Package ij.plugin
Class Concatenator
- java.lang.Object
-
- ij.plugin.Concatenator
-
- All Implemented Interfaces:
PlugIn,java.awt.event.ItemListener,java.util.EventListener
public class Concatenator extends java.lang.Object implements PlugIn, java.awt.event.ItemListener
This plugin, which concatenates two or more images or stacks, implements the Image/Stacks/Tools/Concatenate command. Gives the option of viewing the concatenated stack as a 4D image.- Author:
- Jon Jackson j.jackson # ucl.ac.uk last modified June 29 2006
-
-
Field Summary
Fields Modifier and Type Field Description intmaxEntriesjava.lang.StringpluginName
-
Constructor Summary
Constructors Constructor Description Concatenator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImagePlusconcatenate(ImagePlus[] ims, boolean keepIms)Concatenate two or more images or stacks.ImagePlusconcatenate(ImagePlus imp1, ImagePlus imp2, boolean keep)Concatenate two images or stacks.ImagePlusconcatenateHyperstacks(ImagePlus[] images, java.lang.String newTitle, boolean keep)voiditemStateChanged(java.awt.event.ItemEvent ie)ImagePlusrun()Displays a dialog requiring user to choose images and returns ImagePlus of concatenated images.voidrun(java.lang.String arg)Optional string argument sets the name dialog boxes if called from another plugin.voidsetIm5D(boolean bool)
-
-
-
Method Detail
-
run
public void run(java.lang.String arg)
Optional string argument sets the name dialog boxes if called from another plugin.
-
run
public ImagePlus run()
Displays a dialog requiring user to choose images and returns ImagePlus of concatenated images.
-
concatenate
public ImagePlus concatenate(ImagePlus imp1, ImagePlus imp2, boolean keep)
Concatenate two images or stacks.
-
concatenate
public ImagePlus concatenate(ImagePlus[] ims, boolean keepIms)
Concatenate two or more images or stacks.
-
concatenateHyperstacks
public ImagePlus concatenateHyperstacks(ImagePlus[] images, java.lang.String newTitle, boolean keep)
-
itemStateChanged
public void itemStateChanged(java.awt.event.ItemEvent ie)
- Specified by:
itemStateChangedin interfacejava.awt.event.ItemListener
-
setIm5D
public void setIm5D(boolean bool)
-
-