在misc模块中找不到imread

时间:2013-08-05 15:23:36

标签: python scipy python-imaging-library

我正在尝试使用misc.imsave('lena.png',l),它总是告诉我没有找到imsave。我阅读并搜索答案,但仍然没有任何线索。

我导入了scipy和PIL模块。

>>> import scipy
>>> from scipy import misc
>>> l = misc.lena()
>>> from PIL import Image
>>> misc.imsave('lena.png', l)
Traceback (most recent call last):
 File "<pyshell#53>", line 1, in <module>
  misc.imsave('lena.png', l)
AttributeError: 'module' object has no attribute 'imsave'

有关如何使其有效的建议吗?

1 个答案:

答案 0 :(得分:0)

尝试删除此行:

from PIL import Image

过去PIL导入存在问题(例如https://github.com/scipy/scipy/issues/1899)。也许这个问题并没有完全解决。