一旦我使用scipy.misc.toimage
与scipy版本1.6.1,它总是错误的AttributeError: module 'scipy.misc' has no attribute 'toimage'
关于文档,像toimage
这样的属性只能在1.0.0版本之前用于scipy.misc
,直到1.2.0版本
来源:https://docs.scipy.org/doc/scipy-1.2.1/reference/misc.html
目前,我使用python 3.8,我可以知道scipy版本1.6.1中的哪个属性与scipy版本1.0.0中的scipy.misc.toimage
具有相同的功能吗?
链接文档toimage
节明确指出:
直接使用Pillow的Image.fromarray。
安装Pillow
包(如果还没有安装),然后使用例如
from PIL import Image
Image.fromarray(data)
(其中data
为NumPy数组)