Examples of Duplicator


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

Examples of ij.plugin.Duplicator

    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

Examples of ij.plugin.Duplicator

  }
 

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

Examples of org.conserve.tools.Duplicator

    if (this.equals(target))
    {
      throw new IllegalArgumentException(
          "Can not copy database into itself.");
    }
    Duplicator dup = new Duplicator(this, target);
    dup.doCopy();
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.