VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pil-gaussianblur-method/

⇱ Python PIL | GaussianBlur() method - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python PIL | GaussianBlur() method

Last Updated : 14 Jul, 2019
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.
Output: 👁 Image
Comment
Article Tags:
Article Tags: