运行时:
import scipy
scipy.ndimage.imread('path/to/image',mode='RGB')
我知道了
AttributeError: module 'scipy.ndimage' has no attribute 'imread'
我已经尝试卸载并重新安装scipy,并且还按照there
的要求重新安装Pillow和numpy。是否缺少一些模块?
答案 0 :(得分:0)
我今天也遇到了这个问题。发生这种情况是因为不建议使用scipy.ndimage.imread,请参阅文档here。
要执行相同的操作,可以使用imageio软件包
conda install -c conda-forge imageio
此后,您就可以
import imageio
imageio.imread('path/to/image',mode='RGB')
答案 1 :(得分:0)
大多数人已经拥有的imread
库是matplotlib
。像这样使用它:
import matplotlib
matplotlib.pyplot.imread('path')