Package ij.plugin

Examples of ij.plugin.Duplicator


  public void run(ImageProcessor ip) {
  }

  public ImagePlus duplicateStack(ImagePlus imp, String newTitle) {
    ImagePlus imp2 = (new Duplicator()).run(imp);
    imp2.setTitle(newTitle);
    return imp2;
  }
View Full Code Here


    imp2.setTitle(newTitle);
    return imp2;
  }
 
  public ImagePlus duplicateSubstack(ImagePlus imp, String newTitle, int first, int last) {
    ImagePlus imp2 = (new Duplicator()).run(imp, first, last);
    imp2.setTitle(newTitle);
    return imp2;
  }
View Full Code Here

  }
 

  /** Returns a copy (clone) of this ImagePlus. */
  public ImagePlus duplicate() {
    return (new Duplicator()).run(this);
  }
View Full Code Here

TOP

Related Classes of ij.plugin.Duplicator

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.