Blur filter.
For more information about this class, see The BLUR Class.
Contour filter.
For more information about this class, see The CONTOUR Class.
Detail filter.
For more information about this class, see The DETAIL Class.
Edge enhancement filter.
For more information about this class, see The EDGE_ENHANCE Class.
Stronger edge enhancement filter.
For more information about this class, see The EDGE_ENHANCE_MORE Class.
Embossing filter.
For more information about this class, see The EMBOSS Class.
Edge-finding filter.
For more information about this class, see The FIND_EDGES Class.
Convolution filter kernel.
For more information about this class, see The Kernel Class.
Max filter.
For more information about this class, see The MaxFilter Class.
Median filter.
For more information about this class, see The MedianFilter Class.
Min filter.
For more information about this class, see The MinFilter Class.
Mode filter.
For more information about this class, see The ModeFilter Class.
Rank filter.
For more information about this class, see The RankFilter Class.
Sharpening filter.
For more information about this class, see The SHARPEN Class.
Smoothing filter.
For more information about this class, see The SMOOTH Class.
Stronger smoothing filter.
For more information about this class, see The SMOOTH_MORE Class.
Blur filter.
Contour filter.
Detail filter.
Edge enhancement filter.
Stronger edge enhancement filter.
Embossing filter.
Edge-finding filter.
Convolution filter kernel.
Create a convolution kernel. The current version only supports 3x3 and 5x5 integer and floating point kernels.
In the current version, kernels can only be applied to "L" and "RGB" images.
Max filter. Picks the largest pixel value in a window with the given size.
Create a max filter.
Median filter. Picks the median pixel value in a window with the given size.
Create a median filter.
Min filter. Picks the lowest pixel value in a window with the given size.
Create a min filter.
Mode filter. Picks the most frequent pixel value in a box with the given size. Pixel values that occur only once or twice are ignored; if no pixel value occurs more than twice, the original pixel value is preserved.
Create a mode filter.
Rank filter.
Create a rank filter. The rank filter sorts all pixels in a window of the given size, and returns the rank'th value.
Sharpening filter.
Smoothing filter.
Stronger smoothing filter.