| Class
 
 | Description
 
 | 
|---|
| AffineTransformOp
 | Implements: BufferedImageOp,RasterOp A class that defines an affine transform to perform a linear mapping from 2D coordinates in a source ImageorRasterto 2D coordinates in the destination image orRaster. 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 ImageFilterthat provides a simple means of using a BufferedImageOp (a single-source/single-destination image operator) to filter aBufferedImageorRaster. | 
| ColorConvertOp
 | Implements: BufferedImageOp,RasterOp Performs a pixel-by-pixel color conversion of the data in the source image.
 | 
| ConvolveOp
 | Implements: BufferedImageOp,RasterOp Uses a Kernelto 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. TheKernel 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. ForBufferedImages, 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. 
 |