如何用 Matplotlib 顯示圖片

Suraj Joshi 2022年12月26日 2020年11月7日
如何用 Matplotlib 顯示圖片

本教程將討論如何使用 matplotlib.pyplot.imshow() 方法來使用 Matplotlib 顯示圖片。

matplotlib.pyplot.imshow() 方法

matplotlib.pyplot.imshow() 在 Matplotlib 中顯示數字。

matplotlib.pyplot.imshow() 語法

matplotlib.pyplot.imshow(X, 
                         cmap=None, 
                         norm=None, 
                         aspect=None, 
                         interpolation=None, 
                         alpha=None, 
                         vmin=None, 
                         vmax=None, 
                         origin=None, 
                         extent=None, *, 
                         filternorm=True, 
                         filterrad=4.0, 
                         resample=None, 
                         url=None, 
                         data=None, 
                         **kwargs)

在這裡,X 代表顯示的圖片或 PIL 圖片的陣列式結構。

示例:用 Matplotlib Python 使用 imshow() 顯示圖片

import matplotlib.pyplot as plt
import matplotlib.image as img

image = img.imread('lena.jpg')
plt.imshow(image)
plt.show()

輸出:

用 Matplotlib Python 顯示圖片

它使用 matplotlib.image 模組中的 imread() 方法從當前工作目錄中讀取圖片 lena.jpg,最後使用 imshow() 方法顯示圖片。如果不使用 IPython Notebooks,必須在 imshow() 之後呼叫 show() 方法才能檢視圖片,show() 方法會啟動圖片的單獨視窗。

示例:用 Matplotlib Python 使用 imshow() 顯示 PIL 圖片

import matplotlib.pyplot as plt
from PIL import Image

image = Image.open('lena.jpg')
plt.imshow(image)
plt.show()

輸出:

用 Matplotlib Python 顯示 PIL 圖片

它顯示 PIL 圖片。我們使用 PILImage 模組中的 open() 方法讀取它。我們也可以用 PIL 直接顯示圖片,方法簡單得多。

from PIL import Image
img = Image.open('lena.jpg')
img.show()
Author: Suraj Joshi
Suraj Joshi avatar Suraj Joshi avatar

Suraj Joshi is a backend software engineer at Matrice.ai.

LinkedIn

相關文章 - Matplotlib Images