JIU 0.12.0 Homepage

Uses of Interface
net.sourceforge.jiu.data.IntegerImage

Packages that use IntegerImage
net.sourceforge.jiu.color.adjustment Contains operations that modify pixel colors independent from other pixels 
net.sourceforge.jiu.color.analysis Contains classes that analyze pixel or sample values and thus determine certain image properties 
net.sourceforge.jiu.data Provides classes to store images and data directly related to them.  
net.sourceforge.jiu.filters Various image filters that produce an output image from an input image, mostly reading a pixel and its neighbors in the input image to determine the pixel in the output image 
net.sourceforge.jiu.gui.awt Classes to interoperate with Java's first GUI toolkit, the AWT (Abstract Windowing Toolkit).  
 

Uses of IntegerImage in net.sourceforge.jiu.color.adjustment
 

Constructors in net.sourceforge.jiu.color.adjustment with parameters of type IntegerImage
NormalizeHistogram(IntegerImage in)
          Creates an object of this class and initializes the lookup tables with the argument input image.
EqualizeHistogram(IntegerImage in)
          Creates an object of this class and initializes the lookup tables with the argument input image.
 

Uses of IntegerImage in net.sourceforge.jiu.color.analysis
 

Methods in net.sourceforge.jiu.color.analysis with parameters of type IntegerImage
static CoOccurrenceMatrix MatrixCreator.createCoOccurrenceMatrix(IntegerImage image, int channelIndex)
           
static void MatrixCreator.initCoOccurrenceMatrix(IntegerImage image, int channelIndex, CoOccurrenceMatrix matrix)
          Initializes a co-occurrence matrix from the input image, using the direct four neighbor pixels.
 void Histogram3DCreator.setImage(IntegerImage newImage)
          The image for which a histogram will be initialized.
 void Histogram3DCreator.setImage(IntegerImage newImage, int channelIndex1, int channelIndex2, int channelIndex3)
          The image for which a histogram will be initialized.
 void Histogram1DCreator.setImage(IntegerImage newImage)
          Set the image for which the histogram is to be initialized.
 void Histogram1DCreator.setImage(IntegerImage newImage, int imageChannelIndex)
          Set the image and the channel index for which the histogram is to be initialized.
 

Uses of IntegerImage in net.sourceforge.jiu.data
 

Subinterfaces of IntegerImage in net.sourceforge.jiu.data
 interface BilevelImage
          An interface for bilevel pixel image data classes.
 interface ByteChannelImage
          An extension of the IntegerImage interface that restricts the image to byte samples.
 interface Gray16Image
          Interface for grayscale images using integer samples that are sixteen bits large.
 interface Gray8Image
          Interface for grayscale images using integer samples that are eight bits large.
 interface GrayIntegerImage
          An empty interface for grayscale images which have integer values of up to 32 bits (int or smaller) as samples.
 interface Paletted8Image
          An interface for classes that store paletted images with eight bit integers for each pixel.
 interface PalettedIntegerImage
          An empty interface for a paletted image type that uses integer values as samples.
 interface RGB24Image
          An empty interface for RGB truecolor images with integer samples that are each eight bits large (thus, 24 bits per pixel).
 interface RGB48Image
          An empty interface for RGB truecolor images with integer samples that are each sixteen bits large (thus, 48 bits per pixel).
 interface RGBIntegerImage
          An interface for RGB truecolor images that have integer samples.
 interface ShortChannelImage
          An extension of the IntegerImage interface that restricts the image to short samples.
 

Classes in net.sourceforge.jiu.data that implement IntegerImage
 class MemoryBilevelImage
          An implementation of the BilevelImage interface that stores image data in a byte array in memory.
 class MemoryByteChannelImage
          An implementation of ByteChannelImage that stores image channels as byte[] arrays in memory.
 class MemoryGray16Image
          An implementation of Gray16Image that keeps the complete image in memory.
 class MemoryGray8Image
          An implementation of Gray8Image that keeps the complete image in memory.
 class MemoryPaletted8Image
          This class stores a paletted image with one byte per sample in memory.
 class MemoryRGB24Image
          A class to store 24 bit RGB truecolor images in memory.
 class MemoryRGB48Image
          A class to store 48 bit RGB truecolor images in memory.
 class MemoryShortChannelImage
          An implementation of ShortChannelImage that stores image channels as short[] arrays in memory.
 

Methods in net.sourceforge.jiu.data that return IntegerImage
 IntegerImage TransparencyInformation.getAlphaChannelImage()
          Returns an image object that contains an alpha channel.
 

Methods in net.sourceforge.jiu.data with parameters of type IntegerImage
 void TransparencyInformation.setAlphaChannelImage(IntegerImage newImage)
          Set a new alpha channel image object.
 

Uses of IntegerImage in net.sourceforge.jiu.filters
 

Methods in net.sourceforge.jiu.filters that return IntegerImage
 IntegerImage BorderSampleGenerator.getImage()
          Returns the image from which data is copied.
 

Constructors in net.sourceforge.jiu.filters with parameters of type IntegerImage
BorderSampleGenerator(IntegerImage integerImage, int areaWidth, int areaHeight)
          Initialize width and height of the area to be covered in every call to BorderSampleGenerator.fill(int, int, int[]), also provides the image to be used for data copying.
 

Uses of IntegerImage in net.sourceforge.jiu.gui.awt
 

Classes in net.sourceforge.jiu.gui.awt that implement IntegerImage
 class BufferedRGB24Image
          A bridge class to use BufferedImage objects (class defined in the standard runtime library, package java.awt.image) as RGB24Image objects within JIU.
 


JIU 0.12.0 Homepage

Copyright © 2000, 2001, 2002, 2003, 2004 Marco Schmidt