Uses of Class
jjil.core.Gray8Image

Packages that use Gray8Image
jjil.algorithm   
jjil.core   
 

Uses of Gray8Image in jjil.algorithm
 

Methods in jjil.algorithm that return Gray8Image
static Gray8Image PsfGray8.disk(int nImageWidth, int nRadius)
          Computes a disk-shaped point spread function that can be used to do deblurring for circular blur.
static Gray8Image PsfGray8.horizBar(int nImageWidth, int nBarHalfWidth)
          Computes a horizontal bar point spread function, with a given width.
 

Methods in jjil.algorithm with parameters of type Gray8Image
static int[] GrayHist.computeHistogram(Gray8Image image)
          Compute the histogram of the input gray image.
 int[][] ZeroCrossingHoriz.push(Gray8Image image)
          Computes the zero crossings of an input gray image that are greater than a threshold.
static byte[] GrayVertAvg.push(Gray8Image image)
          Form the one-dimensional byte vector that is the vertical average of the input gray image.
 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.
 

Constructors in jjil.algorithm with parameters of type Gray8Image
InverseFilter(Gray8Image psf, int nGamma)
          Creates a new instance of InverseFilter.
WienerDeconv(Gray8Image psf, int nNoise)
          Creates a new instance of WienerDeconv.
 

Uses of Gray8Image in jjil.core
 

Subclasses of Gray8Image in jjil.core
 class Gray8MaskedImage
          Gray8MaskedImage is the image type used to store a signed 8-bit image and its associated mask.
 class Gray8SubImage
          Gray8SubImage is used to represent a rectangular region extracted from a larger Gray8Image, retaining the x and y position where the subimage was extracted.
 

Methods in jjil.core that return Gray8Image
 Gray8Image Gray8MaskedImage.getImage()
          Returns the input Gray8Image.
 Gray8Image Gray8MaskedImage.getMask()
          Get the image mask, a Gray8Image.
 Gray8Image Gray32MaskedImage.getMask()
          Get the input Gray8Image mask.
 

Constructors in jjil.core with parameters of type Gray8Image
Gray32MaskedImage(Gray32Image imData, Gray8Image imMask)
          Creates a new instance of Gray32MaskedImage from an existing image and mask.
Gray8MaskedImage(Gray8Image imData, Gray8Image imMask)
          Creates a new instance of Gray8MaskedImage from an existing image and mask.