VOOZH about

URL: https://www.geeksforgeeks.org/python/python-pil-image-filter-with-imagefilter-module/

⇱ Python PIL | Image filter with ImageFilter module - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Python PIL | Image filter with ImageFilter module

Last Updated : 29 Aug, 2022

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. Image used: 👁 Image
Filters - The current version of the library provides the set of predefined image enhancement filters: 1. BLUR 

Output: 👁 Image
  2. CONTOUR 

Output: 👁 Image
  3. EMBOSS 

Output: 👁 Image
  4. EDGE_ENHANCE 

Output: 👁 Image
  5. EDGE_ENHANCE_MORE 

Output: 👁 Image

Comment
Article Tags: