Image Conversion , Applying Filters Using Python

Published: 06 June 2020
on channel: Play With Coding
257
32

#youtube
Code for converting Colour Image to Black -White
from PIL import Image
openimage=Image.open(r"E:\4.jpg")
convert=openimage.convert("L")
openimage.show()
convert.show()

#convert.save(r"E:\20.PNG")

Code for Applying Filters
from PIL import ImageFilter
convert=openimage.filter(ImageFilter.FIND_ED)
convert.show()


On this page of the site you can watch the video online Image Conversion , Applying Filters Using Python with a duration of hours minute second in good quality, which was uploaded by the user Play With Coding 06 June 2020, share the link with friends and acquaintances, this video has already been watched 257 times on youtube and it was liked by 32 viewers. Enjoy your viewing!