MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / duplicate

Method duplicate

ij/src/main/java/ij/ImagePlus.java:2633–2639  ·  view source on GitHub ↗

Returns a copy of this image or stack. @see #crop @see ij.plugin.Duplicator#run

()

Source from the content-addressed store, hash-verified

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',

Callers 3

mergeHyperstacksMethod · 0.95
openAllMethod · 0.95
setImageMethod · 0.45

Calls 4

getRoiMethod · 0.95
deleteRoiMethod · 0.95
setRoiMethod · 0.95
runMethod · 0.65

Tested by

no test coverage detected