Uses of Class
jjil.core.RgbImage

Packages that use RgbImage
jjil.algorithm   
jjil.debug   
jjil.j2se   
 

Uses of RgbImage in jjil.algorithm
 

Methods in jjil.algorithm that return RgbImage
 RgbImage Gray3Bands2Rgb.push(Gray8Image imRed, Gray8Image imGreen, Gray8Image imBlue)
          Converts 3 8-bit gray images into an RGB image by combining the R, G, and B values.
 RgbImage ApplyMaskRgb.push(RgbImage imRgb, Gray8Image imMask)
          Highlights an area in a RGB image by turning the non-masked areas gray and dimming them.
 

Methods in jjil.algorithm with parameters of type RgbImage
 RgbImage ApplyMaskRgb.push(RgbImage imRgb, Gray8Image imMask)
          Highlights an area in a RGB image by turning the non-masked areas gray and dimming them.
 

Uses of RgbImage in jjil.debug
 

Methods in jjil.debug with parameters of type RgbImage
 void Show.toDisplay(RgbImage rgb)
           
 void Debug.toDisplay(RgbImage rgb)
           
 void Show.toFile(RgbImage rgb, java.lang.String szFilename)
           
 void Debug.toFile(RgbImage rgb, java.lang.String szFilename)
           
 

Uses of RgbImage in jjil.j2se
 

Methods in jjil.j2se that return RgbImage
static RgbImage RgbImageJ2se.toRgbImage(java.awt.Image im)
          Transforms an input java.awt.Image to a jjil.core.RgbImage.
 

Methods in jjil.j2se with parameters of type RgbImage
 void RgbImageJ2se.toDisplay(RgbImage rgb)
          Sends an RgbImage to the current graphics object.
 void RgbImageJ2se.toFile(RgbImage rgb, java.lang.String szFile)
          Sends an RgbImage to a file.