Returns a copy of this image or stack. @see #crop @see ij.plugin.Duplicator#run
()
| 2631 | * @see ij.plugin.Duplicator#run |
| 2632 | */ |
| 2633 | public ImagePlus duplicate() { |
| 2634 | Roi roi = getRoi(); |
| 2635 | deleteRoi(); |
| 2636 | ImagePlus imp2 = (new Duplicator()).run(this); |
| 2637 | setRoi(roi); |
| 2638 | return imp2; |
| 2639 | } |
| 2640 | |
| 2641 | /** Returns a scaled copy of this image or ROI, where the |
| 2642 | 'options' string can contain 'none', 'bilinear'. 'bicubic', |