`imread` is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use ``imageio.imread`` instead.
摘要:
如题干所述,scipy 里面的 imread 读取图片会出错,代码如下: 报错信息为: 解决方法: 阅读以上报错信息,发现需要调用 imageio.imread ,而 scipy 中没有 scipy.imageio 子模块。 查阅相关信息,了解到,imageio 是一个独立的模块。 代码修改如下: 阅读全文