PIL is the Python Imaging Library which provides the python interpreter with image editing capabilities. The ImageFilter module contains definitions for a pre-defined set of filters,
which can be used with the
Image.filter() method.
PIL.ImageFilter.MedianFilter() method creates a median filter. Picks the median pixel value in a window with the given size.
Syntax: PIL.ImageFilter.MedianFilter(size=3)
Parameters:
size: The kernel size, in pixels.
Image used:
👁 Image
Output:
👁 Image
PIL.ImageFilter.ModeFilter() method creates a 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.
Syntax: PIL.ImageFilter.ModeFilter(size=3)
Parameters:
size: The kernel size, in pixels.