Uses of Class
core.image.RGBImage

Packages that use RGBImage
core.image This package creates and evolves the individual FLIC images making up a movie of a given experiment. 
core.io This package creates and handles various input/output functions for the final images that are created, as well as the window used to display those images in real time to the user as the DFLIC images are produced. 
core.rendering This package handles all the code that draws and evolves the DLIC and the experiment. 
 

Uses of RGBImage in core.image
 

Methods in core.image with parameters of type RGBImage
 void RGBImage.Copy(RGBImage image, int xorigin, int yorigin)
          Copies the RGB values from the sub-window of 'image' starting at (xorigin, yorigin) to 'this'.
 void RGBImage.Copy(RGBImage image)
          Copies the RGB values from the top-left corner of 'image' to 'this' Requires: 'image' is at least as large as 'this'
 

Uses of RGBImage in core.io
 

Methods in core.io that return RGBImage
static RGBImage ImageIO.ReadTIFF(java.lang.String filename)
          Reads 'filename' as a TIFF file and creates an RGBImage object that represents its contents.
 

Methods in core.io with parameters of type RGBImage
static void ImageIO.WriteTIFF(RGBImage image, java.lang.String filename)
          Writes a TIFF file representing 'image' to 'filename'
static void ImageIO.WriteRawRGB(RGBImage image, java.lang.String filename)
          Writes a Raw file representing 'image' to 'filename' The pixels are written in RGB, left-right, top-down order
static void ImageIO.WriteRawX(RGBImage image, java.lang.String filename)
          Writes a RawX file representing 'image' to 'filename' The pixels are written in RGB, left-right, top-down, 4-interleaved order
static void ImageIO.WriteMonoTGA(RGBImage image, java.lang.String filename)
          Writes a MonoTGA file representing 'image' to 'filename' The RGB components are mixed together in (50%, 35%, 15%) proportions
static void ImageIO.WriteTGA(RGBImage image, java.lang.String filename)
          Writes a TGA file represneting 'image' to 'filename'
 

Uses of RGBImage in core.rendering
 

Fields in core.rendering declared as RGBImage
(package private)  RGBImage Renderer.rgbimage
          The rgb verzion of output with the same dimensions as output.
(package private)  RGBImage Renderer.outimage
          The rgb version of output which now has the full (width,height) dimensions, with the additional information (if any) computed from the assumed symmetry of the image.