使用matplotlib的imread无法读取“jpg”图片

刚刚写了一段简单的读取图片的代码

'''
使用matplotlib的image模块读取图片
'''

import matplotlib.pyplot as plt
from matplotlib.image import imread

img = imread('img.jpg')
plt.imshow(img)

plt.show()

但是出现 ValueError: Only know how to handle extensions: [‘png’]; with Pillow installed matplotlib can handle more images,意思就是只能使用png图片,根据它的异常意思,直接下载pillow即可。
conda install pillow便可解决问题

你可能感兴趣的:(图像处理,python)