使用matplotlib显示图片(《深度学习入门:基于Python的理论与实现》实践笔记)
一、安装matplotlib库
在命令行使用下面的命令即可:
pip install matplotlib
二、导入matplotlib.pyplot库和matplotlib.image库里的imread函数
在程序开头使用:
import matplotlib.pyplot as plt
from matplotlib.image import imread
在程序中使用plt简写表示matplotlib.pyplot库,从matplotlib.image库中导入imread函数,这个函数可以读取图片内容。
三、实例:显示图片
完整代码如下:
import matplotlib.pyplot as plt
from matplotlib.image import imread
img = imread('xh.png') # 读入图片,imread函数里是需要显示的图片的地址,相对地址和绝对地址都可以
plt.imshow(img) # 把图片传给imshow函数
plt.show() #显示图片
运行代码后可以看到:
图片显示出来了,大小尺寸也给出了。
亲测.png和.jpg格式的图片都能用这种方式显示,其他的还没试过。
本实例来自于,由[日]斋藤康毅所著的《深度学习入门:基于Python的理论与实现》。