Image processing using python| Pycharm

Publicado em: 16 Maio 2021
no 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()


Nesta página do site você pode assistir ao vídeo on-line Image processing using python| Pycharm duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Chandrakanth 16 Maio 2021, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 545 vezes e gostou 3 espectadores. Boa visualização!