module ‘scipy.misc‘ has no attribute ‘imread‘
Posted super尚
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了module ‘scipy.misc‘ has no attribute ‘imread‘相关的知识,希望对你有一定的参考价值。
官方scipy中提到,imread is deprecated! imread is deprecated in SciPy 1.0.0, and will be removed in 1.2.0. Use imageio.imread instead.
SciPy1.0.0不赞成使用imread,在1.2中已经弃用,可以使用imageio.imread来代替。
先安装:
conda install imageio 或者pip install imageio
再使用:
import imageio
content_image = imageio.imread
以上是关于module ‘scipy.misc‘ has no attribute ‘imread‘的主要内容,如果未能解决你的问题,请参考以下文章
module ‘scipy.misc‘ has no attribute ‘imread‘