- java.lang.Object
-
- java.awt.image.LookupTable
-
- Direct Known Subclasses:
- ByteLookupTable, ShortLookupTable
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 Also:
ByteLookupTable
,ShortLookupTable
,LookupOp
-
-
Constructor Summary
Constructors Modifier Constructor and Description protected
LookupTable(int offset, int numComponents)
Constructs a new LookupTable from the number of components and an offset into the lookup table.
-
Method Summary
Methods Modifier and Type Method and Description int
getNumComponents()
Returns the number of components in the lookup table.int
getOffset()
Returns the offset.abstract int[]
lookupPixel(int[] src, int[] dest)
Returns anint
array of components for one pixel.
-
-
-
Constructor Detail
-
LookupTable
protected LookupTable(int offset, int numComponents)
Constructs a new LookupTable from the number of components and an offset into the lookup table.- Parameters:
offset
- the offset to subtract from input values before indexing into the data arrays for thisLookupTable
numComponents
- the number of data arrays in thisLookupTable
- Throws:
IllegalArgumentException
- ifoffset
is less than 0 or ifnumComponents
is less than 1
-
-
Method Detail
-
getNumComponents
public int getNumComponents()
Returns the number of components in the lookup table.- Returns:
- the number of components in this
LookupTable
.
-
getOffset
public int getOffset()
Returns the offset.- Returns:
- the offset of this
LookupTable
.
-
lookupPixel
public abstract int[] lookupPixel(int[] src, int[] dest)
Returns anint
array of components for one pixel. Thedest
array contains the result of the lookup and is returned. If dest isnull
, a new array is allocated. The source and destination can be equal.- Parameters:
src
- the source array of components of one pixeldest
- the destination array of components for one pixel, translated with thisLookupTable
- Returns:
- an
int
array of components for one pixel.
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
17/11/2024 17:36:19 Cette version de la page est en cache (à la date du 17/11/2024 17:36:19) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 30/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-java/awt/image/lookuptable.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.