()
| 126 | } |
| 127 | |
| 128 | public synchronized Object clone() { |
| 129 | ImageRoi roi2 = (ImageRoi)super.clone(); |
| 130 | ImagePlus imp = new ImagePlus("", img); |
| 131 | roi2.setProcessor(imp.getProcessor()); |
| 132 | roi2.setOpacity(getOpacity()); |
| 133 | return roi2; |
| 134 | } |
| 135 | |
| 136 | public ImageProcessor getProcessor() { |
| 137 | if (ip!=null) |
nothing calls this directly
no test coverage detected