Image processing using python| Pycharm

Publicado el: 16 mayo 2021
en el canal de: Chandrakanth
545
3

The code which i used in this video is given below:
In the second line paste u r image's location and then run the program.

from PIL import Image,ImageFilter
myImage=Image.open(" ")
myImage.show()
print(myImage.size)
newImage=myImage.resize((167,91))
print(newImage.size)
newImage.show()
rotatedImage=myImage.rotate(145)
rotatedImage.show()
resizedImage=myImage.resize((50,70))
resizedImage.show()
flippedImage=myImage.transpose(Image.FLIP_LEFT_RIGHT)
flippedImage.show()
flippedImage=myImage.transpose(Image.FLIP_TOP_BOTTOM)
flippedImage.show()
croppedImage=myImage.crop\
(
(
90, 100,
500, 120
)
)
croppedImage.show()
greyImage=myImage.convert("L")
greyImage.show()
blurredImage=myImage.filter(ImageFilter.BoxBlur(5))
blurredImage.show()


En esta página del sitio puede ver el video en línea Image processing using python| Pycharm de Duración hora minuto segunda en buena calidad , que subió el usuario Chandrakanth 16 mayo 2021, comparta el enlace con amigos y conocidos, en youtube este video ya ha sido visto 545 veces y le gustó 3 a los espectadores. Disfruta viendo!