Terms
|
Definitions
|
Approximation
|
The method by which the software chooses replacement colors in the event that direct matches cannot be found. The methods of approximation discussed in this chapter are colormap mapping, uniform quantization, and minimum variance quantization.
|
Indexed image
|
An image whose pixel values are direct indices into an RGB colormap. In MATLAB, an indexed image is represented by an array of class uint8 , uint16 , or double . The colormap is always an m-by-3 array of class double . We often use the variable name X to represent an indexed image in memory, and map to represent the colormap.
|
Intensity image
|
An image consisting of intensity (grayscale) values. In MATLAB, intensity images are represented by an array of class uint8 , uint16 , or double . While intensity images are not stored with colormaps, MATLAB uses a system colormap to display them. We often use the variable name I to represent an intensity image in memory. This term is synonymous with the term grayscale.
|
RGB image
|
An image in which each pixel is specified by three values -- one each for the red, blue, and green components of the pixel's color. In MATLAB, an RGB image is represented by an m-by-n-by-3 array of class uint8 , uint16 , or double . We often use the variable name RGB to represent an RGB image in memory.
|
Screen bit depth
|
The number of bits per screen pixel.
|
Screen color resolution
|
The number of distinct colors that can be produced by the screen.
|