Uses of Class
ij.ImageStack

Packages that use ImageStack
ij   
ij.plugin   
ij.plugin.filter   
ij.process   
 

Uses of ImageStack in ij
 

Subclasses of ImageStack in ij
 class VirtualStack
          This class represents an array of disk-resident images.
 

Methods in ij that return ImageStack
 ImageStack ImagePlus.createEmptyStack()
          Returns an empty image stack that has the same width, height and color table as this image.
 ImageStack ImagePlus.getStack()
          Returns the image stack.
 ImageStack ImagePlus.getImageStack()
          Returns the base image stack.
 

Methods in ij with parameters of type ImageStack
 void ImagePlus.setStack(java.lang.String title, ImageStack stack)
          Replaces the stack, if any, with the one specified.
 

Constructors in ij with parameters of type ImageStack
ImagePlus(java.lang.String title, ImageStack stack)
          Constructs an ImagePlus from a stack.
 

Uses of ImageStack in ij.plugin
 

Methods in ij.plugin that return ImageStack
 ImageStack RGBStackMerge.mergeStacks(int w, int h, int d, ImageStack red, ImageStack green, ImageStack blue, boolean keep)
           
 ImageStack PGM_Reader.openFile(java.lang.String path)
           
 ImageStack DICOM_Sorter.sort(ImageStack stack)
           
 ImageStack CanvasResizer.expandStack(ImageStack stackOld, int wNew, int hNew, int xOff, int yOff)
           
 

Methods in ij.plugin with parameters of type ImageStack
 ImageStack RGBStackMerge.mergeStacks(int w, int h, int d, ImageStack red, ImageStack green, ImageStack blue, boolean keep)
           
 ImageStack DICOM_Sorter.sort(ImageStack stack)
           
 ImageStack CanvasResizer.expandStack(ImageStack stackOld, int wNew, int hNew, int xOff, int yOff)
           
 

Uses of ImageStack in ij.plugin.filter
 

Fields in ij.plugin.filter declared as ImageStack
 ImageStack RGBStackSplitter.red
          These are the three stacks created by the split(ImageStack) method.
 ImageStack RGBStackSplitter.green
          These are the three stacks created by the split(ImageStack) method.
 ImageStack RGBStackSplitter.blue
          These are the three stacks created by the split(ImageStack) method.
 

Methods in ij.plugin.filter with parameters of type ImageStack
 void RGBStackSplitter.split(ImageStack rgb, boolean keepSource)
          Splits the specified RGB stack into three 8-bit grayscale stacks.
 void Projector.getByteRow(ImageStack stack, int x, int y, int z, int width1, int width2, int[] line)
           
 void Projector.putByteRow(ImageStack stack, int y, int z, int width, int[] line)
           
 void Projector.getRGBRow(ImageStack stack, int x, int y, int z, int width1, int width2, int[] line)
           
 void Projector.putRGBRow(ImageStack stack, int y, int z, int width, int[] line)
           
 

Uses of ImageStack in ij.process
 

Methods in ij.process that return ImageStack
 ImageStack StackProcessor.resize(int newWidth, int newHeight)
          Creates a new stack with dimensions 'newWidth' x 'newHeight'.
 ImageStack StackProcessor.crop(int x, int y, int width, int height)
          Crops the stack to the specified rectangle.
 ImageStack StackProcessor.rotateRight()
           
 ImageStack StackProcessor.rotateLeft()
           
 ImageStack FHT.getComplexTransform()
          Converts this FHT to a complex Fourier transform and returns it as a two slice stack.
 

Methods in ij.process with parameters of type ImageStack
 void StackProcessor.copyBits(ImageStack src, int xloc, int yloc, int mode)
           
 

Constructors in ij.process with parameters of type ImageStack
StackProcessor(ImageStack stack, ImageProcessor ip)
          Constructs a StackProcessor from a stack.