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 int
maxEntries
java.lang.String
pluginName
-
Constructor Summary
Constructors Constructor Description Concatenator()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ImagePlus
concatenate(ImagePlus[] ims, boolean keepIms)
Concatenate two or more images or stacks.ImagePlus
concatenate(ImagePlus imp1, ImagePlus imp2, boolean keep)
Concatenate two images or stacks.ImagePlus
concatenateHyperstacks(ImagePlus[] images, java.lang.String newTitle, boolean keep)
void
itemStateChanged(java.awt.event.ItemEvent ie)
ImagePlus
run()
Displays a dialog requiring user to choose images and returns ImagePlus of concatenated images.void
run(java.lang.String arg)
Optional string argument sets the name dialog boxes if called from another plugin.void
setIm5D(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:
itemStateChanged
in interfacejava.awt.event.ItemListener
-
setIm5D
public void setIm5D(boolean bool)
-
-