matplotlib
Bildmanipulation
Sök…
Öppnar bilder
Matplotlib innehåller image
modul för bildmanipulering
import matplotlib.image as mpimg
import matplotlib.pyplot as plt
Bilder läses från filen ( .png
endast) med funktionen imread
:
img = mpimg.imread('my_image.png')
och de återges av imshow
funktionen:
plt.imshow(img)
Låt oss planera Stack Overflow-logotypen :
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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow