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.getImageStack()
          Returns the base image stack.
(package private)  ImageStack CompositeImage.getRGBStack(ImagePlus imp)
           
 ImageStack ImagePlus.getStack()
          Returns the image stack.
 

Methods in ij with parameters of type ImageStack
(package private)  void ImagePlus.setProcessor2(java.lang.String title, ImageProcessor ip, ImageStack newStack)
           
 void ImagePlus.setStack(java.lang.String title, ImageStack stack)
          Replaces the stack, if any, with the one specified.
(package private)  void CompositeImage.setup(int channels, ImageStack stack2)
           
 

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
(package private)  ImageStack Slicer.createOutputStack(ImagePlus imp, ImageProcessor ip)
           
 ImageStack CanvasResizer.expandStack(ImageStack stackOld, int wNew, int hNew, int xOff, int yOff)
           
 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)
           
(package private)  ImageStack DICOM_Sorter.sortStack(ImageStack stack, java.lang.String[] strings)
           
(package private)  ImageStack FFT.unpad(ImageStack stack)
           
 

Methods in ij.plugin with parameters of type ImageStack
 ImageStack CanvasResizer.expandStack(ImageStack stackOld, int wNew, int hNew, int xOff, int yOff)
           
(package private)  byte[] RGBStackMerge.getPixels(ImageStack stack, int slice, int color)
           
(package private)  java.lang.String[] DICOM_Sorter.getSortStrings(ImageStack stack, java.lang.String tag)
           
 ImageStack RGBStackMerge.mergeStacks(int w, int h, int d, ImageStack red, ImageStack green, ImageStack blue, boolean keep)
           
 ImageStack DICOM_Sorter.sort(ImageStack stack)
           
(package private)  ImageStack DICOM_Sorter.sortStack(ImageStack stack, java.lang.String[] strings)
           
(package private)  void FFT.swapQuadrants(ImageStack stack)
           
(package private)  ImageStack FFT.unpad(ImageStack stack)
           
 

Uses of ImageStack in ij.plugin.filter
 

Fields in ij.plugin.filter declared as ImageStack
 ImageStack RGBStackSplitter.blue
          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.red
          These are the three stacks created by the split(ImageStack) method.
(package private)  ImageStack Projector.stack
           
(package private)  ImageStack Projector.stack2
           
 

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

Uses of ImageStack in ij.process
 

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

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.