matplotlib
Manipulation d'image
Recherche…
Images d'ouverture
Matplotlib comprend l' image
de module de manipulation d'image
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
Les images sont lues depuis un fichier ( .png
uniquement) avec la fonction imread
:
img = mpimg.imread('my_image.png')
et ils sont rendus par la fonction imshow
:
plt.imshow(img)
Nous allons tracer le logo Stack Overflow :
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
img = mpimg.imread('so-logo.png')
plt.imshow(img)
plt.show()
Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow