Syntax error Finding edges in an image using Pillow

Finding edges in an image using Pillow



In this program, we will find the edges in an image using the pillow library. The FIND_EDGES function in the ImageFilter class helps us to find the edges in our image.

Original Image

Algorithm

Step 1: Import Image and ImageFilter from Pillow.
Step 2: Open the image.
Step 3: Call the filter function and specify the find_edges function.
Step 4: Display the output.

Example Code

from PIL import Image, ImageFilter

im = Image.open('testimage.jpg')
im = im.filter(ImageFilter.FIND_EDGES)
im.show()

Output

Updated on: 2021-03-17T08:37:53+05:30

2K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements