Afficher l'image en python
from PIL import Image
#read the image
im = Image.open("sample-image.png")
#show image
im.show()
Lively Lark
from PIL import Image
#read the image
im = Image.open("sample-image.png")
#show image
im.show()
import matplotlib.pyplot as plt
import matplotlib.image as mpimg
img = mpimg.imread('your_image.png')
imgplot = plt.imshow(img)
plt.show()