(String arg, ImagePlus imp)
| 21 | private boolean overlayOnly; |
| 22 | |
| 23 | public int setup(String arg, ImagePlus imp) { |
| 24 | this.imp = imp; |
| 25 | if (imp!=null) { |
| 26 | origOverlay = imp.getOverlay(); |
| 27 | Undo.saveOverlay(imp); |
| 28 | } |
| 29 | return flags; |
| 30 | } |
| 31 | |
| 32 | public void run(ImageProcessor ip) { |
| 33 | ip.setInterpolationMethod(interpolationMethod); |
nothing calls this directly
no test coverage detected