- java.lang.Object
-
- ij.ImageStack
-
- ij.VirtualStack
-
- ij.plugin.FileInfoVirtualStack
-
- All Implemented Interfaces:
PlugIn
public class FileInfoVirtualStack extends VirtualStack implements PlugIn
This plugin opens a multi-page TIFF file, or a set of raw images, as a virtual stack. It implements the File/Import/TIFF Virtual Stack command.
-
-
Field Summary
-
Fields inherited from class ij.ImageStack
cTable
-
-
Constructor Summary
Constructors Constructor Description FileInfoVirtualStack()
FileInfoVirtualStack(FileInfo fi)
FileInfoVirtualStack(FileInfo[] fi)
FileInfoVirtualStack(FileInfo fi, boolean show)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addImage(FileInfo fileInfo)
Adds an image to this stack.void
deleteSlice(int n)
Deletes the specified image, where 1<=n<=nImages.java.lang.String
getDirectory()
Returns the path to the directory containing the images.java.lang.String
getFileName(int n)
Returns the file name of the specified slice, where 1<=n<=nslices.int
getHeight()
ImageProcessor
getProcessor(int n)
Returns an ImageProcessor for the specified image, where 1<=n<=nImages.int
getSize()
java.lang.String
getSliceLabel(int n)
Returns the label of the Nth image.int
getWidth()
static ImagePlus
openVirtual(java.lang.String path)
Opens the specified tiff file as a virtual stack.void
run(java.lang.String arg)
This method is called when the plugin is loaded.int
size()
Returns the number of slices in this stack.-
Methods inherited from class ij.VirtualStack
addSlice, addSlice, addSlice, addSlice, deleteLastSlice, getBitDepth, getImageArray, getPixels, getProperties, isVirtual, reduce, saveChanges, setBitDepth, setIndexes, setPixels, setSliceLabel, sortDicom, translate, trim
-
Methods inherited from class ij.ImageStack
addSlice, addUnsignedShortSlice, convertToFloat, create, create, crop, drawSphere, duplicate, getColorModel, getRoi, getShortSliceLabel, getShortSliceLabel, getSliceLabels, getVoxel, getVoxels, getVoxels, isHSB, isHSB32, isLab, isRGB, setColorModel, setOptions, setProcessor, setRoi, setVoxel, setVoxels, setVoxels, toString, update
-
-
-
-
Method Detail
-
openVirtual
public static ImagePlus openVirtual(java.lang.String path)
Opens the specified tiff file as a virtual stack.
-
run
public void run(java.lang.String arg)
Description copied from interface:PlugIn
This method is called when the plugin is loaded. 'arg', which may be blank, is the argument specified for this plugin in IJ_Props.txt.
-
deleteSlice
public void deleteSlice(int n)
Deletes the specified image, where 1<=n<=nImages.- Overrides:
deleteSlice
in classVirtualStack
-
getProcessor
public ImageProcessor getProcessor(int n)
Returns an ImageProcessor for the specified image, where 1<=n<=nImages. Returns null if the stack is empty.- Overrides:
getProcessor
in classVirtualStack
-
size
public int size()
Returns the number of slices in this stack.- Overrides:
size
in classVirtualStack
-
getSize
public int getSize()
- Overrides:
getSize
in classVirtualStack
-
getSliceLabel
public java.lang.String getSliceLabel(int n)
Returns the label of the Nth image.- Overrides:
getSliceLabel
in classVirtualStack
-
getWidth
public int getWidth()
- Overrides:
getWidth
in classImageStack
-
getHeight
public int getHeight()
- Overrides:
getHeight
in classImageStack
-
addImage
public void addImage(FileInfo fileInfo)
Adds an image to this stack.
-
getDirectory
public java.lang.String getDirectory()
Description copied from class:VirtualStack
Returns the path to the directory containing the images.- Overrides:
getDirectory
in classVirtualStack
-
getFileName
public java.lang.String getFileName(int n)
Description copied from class:VirtualStack
Returns the file name of the specified slice, where 1<=n<=nslices.- Overrides:
getFileName
in classVirtualStack
-
-