Class
|
Description
|
AffineTransformOp
|
Implements: BufferedImageOp , RasterOp
A class that defines 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 . This class can perform either bilinear or nearest neighbor affine transform operations.
|
BandCombineOp
|
Implements: RasterOp
Using a specified matrix, this operation performs an arbitrary linear combination of bands in a Raster .
|
BufferedImageFilter
|
Extends: ImageFilter
An ImageFilter that provides a simple means of using a BufferedImageOp (a single-source/single-destination image operator) to filter a BufferedImage or Raster .
|
ColorConvertOp
|
Implements: BufferedImageOp , RasterOp
Performs a pixel-by-pixel color conversion of the data in the source image.
|
ConvolveOp
|
Implements: BufferedImageOp , RasterOp
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 sample values. For BufferedImages , the lookup operates on color and alpha components.
|
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.
|