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.GaussianBlur() method create Gaussian blur filter.
Syntax: PIL.ImageFilter.GaussianBlur(radius=5)
Parameters:
radius – blur radius. Changing value of radius the different intensity of GaussianBlur image were obtain.
Returns type: An image.
Image Used:
👁 Image
Output:
👁 Image
radius:radius value used here is 2.