Importing image to python :cannot import name 'imread'

代码:

import numpy as np
from scipy.misc import imread, imsave, imresize
# Read an JPEG image into a numpy array
img = imread('Cover.jpg')
print(img.dtype, img.shape)

错误信息:

error: cannot import name 'imread' I've already successfully installed numpy and scipy.

=========================================================================================

问题综述:

1、imread使用Python影像库(PIL)读取图像。以下注释来自PIL文档。

2、不推荐直接使用imread,因为在SciPy 1.0.0中弃用了imread,在1.2.0中将其删除。目前推荐使用imageio.imread代替。

注意:需要安装!!

pip isntall imageio

3、更低版本请与pillow库关联

=========================================================================================

注意事项:

SciPy 与 Pillow 版本

=========================================================================================

上一篇:opencv-cvtColor


下一篇:Python报错module 'scipy.misc' has no attribute 'imsave' 或者'imread'