Class
|
Description
|
AffineTransformOp
|
Implements: BufferedImageOp , RasterOp
An abstract class that defines the protocol for using an affine transform to perform a linear mapping from 2D coordinates in a source Image or Raster to 2D coordinates in the destination image or Raster . Subclasses define what kind of interpolation is done when the image is transformed.
|
BandCombineOp
|
Implements: RasterOp
Using a specified matrix, this operation performs an arbitrary linear combination of bands in a Raster .
|
BilinearAffineTransformOp
|
Extends: AffineTransformOp
Transforms an Image or Raster using an affine transform with bilinear interpolation.
|
ColorConvertOp
|
Implements: BufferedImageOp , RasterOp
Performs a pixel-by-pixel color conversion of the data in the source image.
|
ConvolveOp
|
Uses a Kernel to perform a convolution on the source image. A convolution is a spatial operation where the pixels surrounding the input pixel are multiplied by a kernel value to generate the value of the output pixel. The Kernel mathematically defines the relationship between the pixels in the immediate neighborhood of the input pixel and the output pixel.
|
LookupOp
|
Implements: BufferedImageOp , RasterOp
Performs a lookup operation from the source to the destination. For Rasters , the lookup operates on channel elements. For BufferedImages , the lookup operates on color and alpha components.
|
NearestNeighborAffineTransformOp
|
Extends: AffineTransformOp
Transforms an Image or Raster using an affine transform with nearest neighbor interpolation.
|
RescaleOp
|
Implements: BufferedImageOp , RasterOp
Performs a pixel-by-pixel rescaling of the data in the source image by multiplying each pixel value by a scale factor and then adding an offset.
|
ThresholdOp
|
Implements: BufferedImageOp , RasterOp
Performs thresholding on the source Image or Raster by mapping the value of each image component or channel element that falls between the specified minimum and maximum to a constant.
An Image with an IndexColorModel cannot be thresholded.
|