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()

Den resulterande tomten är Enkel plot av SO-logotypen



Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow