解决module ‘scipy.misc’ has no attribute ‘fromimage’的方法

文档链接

 

fromimage不推荐使用! fromimage在SciPy 1.0.0中已弃用。并将在1.2.0中删除。使用np.asarray(im)代替。

返回numpy数组的PIL图像的副本。

仅当安装了Python Imaging Library(PIL)时,此功能才可用。

参数:

im : PIL图像

输入图像。

展平: 布尔

如果为true,则将输出转换为灰度。

模式: str,可选

将图像转换为的模式,例如'RGB'。有关imread更多详细信息,请参见文档字符串的注释 。

返回值:

fromimage : ndarray

在第三维度中存储不同的色带/通道,使得灰色图像是MxN,RGB图像MxNx3和RGBA图像MxNx4。

你可能感兴趣的:(Python,python,数字图像处理)