(double percent)
| 834 | } |
| 835 | |
| 836 | private void showProgress(double percent) { |
| 837 | if (showMicroProgress && !done) |
| 838 | IJ.showProgress(progressBase+percent*progressScale); |
| 839 | } |
| 840 | |
| 841 | private void getByteRow(ImageStack stack, int x, int y, int z, int width1, int width2, int[] line) { |
| 842 | byte[] pixels = (byte[])stack.getPixels(z+1); |
no test coverage detected