(String arg, ImagePlus imp)
| 21 | static int gauss_radius = 2; |
| 22 | |
| 23 | public int setup(String arg, ImagePlus imp) { |
| 24 | IJ.register(Debayer_Image.class); |
| 25 | if (IJ.versionLessThan("1.32c")) |
| 26 | return DONE; |
| 27 | imp.unlock(); |
| 28 | this.imp = imp; |
| 29 | return DOES_16; |
| 30 | } |
| 31 | |
| 32 | public void run(ImageProcessor ip) { |
| 33 | width = imp.getWidth(); |
nothing calls this directly
no test coverage detected