scipy缺少ndimage

时间:2011-11-20 08:32:06

标签: python scipy

我正在尝试使用来自scipy的ndimage库,但它显然是缺失的。我从numpy和scipy都运行了测试,结果还可以。我正在使用numpy 1.6.1和scipy 0.10.0从sourceforge上的官方软件包安装。

运行

import numpy
import scipy
import pprint

print(scipy.version.version)
print(numpy.version.version)

img = scipy.ndimage.imread("")

给出

0.10.0
1.6.1
Traceback (most recent call last):
  File "extract.py", line 8, in <module>
    img = scipy.ndimage.imread("")
AttributeError: 'module' object has no attribute 'ndimage'

4 个答案:

答案 0 :(得分:41)

您必须导入模块:

import scipy.ndimage

答案 1 :(得分:9)

模块应该像这样导入:

sudo apt-get install svn
cd <folder-project-name>
svn cleanup

答案 2 :(得分:0)

在scipy中找到 init 文件并添加导入ndimage

答案 3 :(得分:0)

https://docs.scipy.org/doc/scipy-1.2.1/reference/generated/scipy.misc.imread.html

不推荐使用 imread! imread 在 SciPy 1.0.0 中已弃用,并将在 1.2.0 中删除。改用 imageio.imread