Python通过PIL模块显示图片文件

2023-03-11 00:00:00 文件 模块 显示

要在Python中显示图像,您可以使用图像处理库(例如Pillow或OpenCV)加载图像文件,并使用matplotlib库中的imshow()函数显示图像。

以下是一个简单的示例代码,假设您已经安装了Pillow和matplotlib库:

from PIL import Image
import matplotlib.pyplot as plt

# 加载图像
image = Image.open('path/to/image.jpg')

# 显示图像
plt.imshow(image)
plt.show()

请注意,在上面的代码中,我们首先使用Pillow库中的Image.open()函数加载图像文件,然后使用matplotlib库中的imshow()函数显示图像。最后,我们调用show()函数来显示图像。

相关文章