See: Description
Class | Description |
---|---|
AreaFilterOperation |
Base class for operations that convert images to images and determine
an output sample by doing calculations on the input sample at the same
position plus some neighboring samples.
|
BorderSampleGenerator |
Abstract base class for classes that fill an
int array with samples
from a rectangular region of an image's channel by
(1) copying int samples from an IntegerImage object
and by (2) generating samples that lie outside of the image. |
ConvolutionKernelData |
This class encapsulates the information for a specific convolution kernel filter.
|
ConvolutionKernelFilter |
Applies a convolution kernel filter to an image.
|
MaximumFilter |
Filter operation that replaces each sample by the maximum value of itself
and its neighbor samples.
|
MeanFilter |
Applies a mean filter that replaces each pixel by the mean of itself and its neighbors.
|
MedianFilter |
Applies a Median filter that replaces each pixel by the median of
itself and its neighbors.
|
MinimumFilter |
Filter operation that replaces each sample by the minimum value of itself
and its neighbors.
|
OilFilter |
Applies a filter that makes the image look like an oil painting.
|
UnsharpMaskKernel |
An unsharp mask kernel to be used with
ConvolutionKernelFilter . |
Various image filters that produce an output image from an input image, mostly reading a pixel and its neighbors in the input image to determine the pixel in the output image.