FileDocCategorySizeDatePackage
LookupTable.javaAPI DocJava SE 5 API3097Fri Aug 26 14:56:54 BST 2005java.awt.image

LookupTable

public abstract class LookupTable extends Object
This abstract class defines a lookup table object. ByteLookupTable and ShortLookupTable are subclasses, which contain byte and short data, respectively. A lookup table contains data arrays for one or more bands (or components) of an image (for example, separate arrays for R, G, and B), and it contains an offset which will be subtracted from the input values before indexing into the arrays. This allows an array smaller than the native data size to be provided for a constrained input. If there is only one array in the lookup table, it will be applied to all bands. All arrays must be the same size.
see
ByteLookupTable
see
ShortLookupTable
see
LookupOp
version
10 Feb 1997

Fields Summary
int
numComponents
Constants
int
offset
int
numEntries
Constructors Summary
protected LookupTable(int offset, int numComponents)
Constructs a new LookupTable from the number of components and an offset into the lookup table.

param
offset the offset to subtract from input values before indexing into the data arrays for this LookupTable
param
numComponents the number of data arrays in this LookupTable
throws
IllegalArgumentException if offset is less than 0 or if numComponents is less than 1

        if (offset < 0) {
            throw new
                IllegalArgumentException("Offset must be greater than 0");
        }
        if (numComponents < 1) {
            throw new IllegalArgumentException("Number of components must "+
                                               " be at least 1");
        }
        this.numComponents = numComponents;
	this.offset = offset;
    
Methods Summary
public intgetNumComponents()
Returns the number of components in the lookup table.

return
the number of components in this LookupTable.

        return numComponents;
    
public intgetOffset()
Returns the offset.

return
the offset of this LookupTable.

        return offset;
    
public abstract int[]lookupPixel(int[] src, int[] dest)
Returns an int array of components for one pixel. The dest array contains the result of the lookup and is returned. If dest is null, a new array is allocated. The source and destination can be equal.

param
src the source array of components of one pixel
param
dest the destination array of components for one pixel, translated with this LookupTable
return
an int array of components for one pixel.