解决AttributeError: module ‘scipy.misc‘ has no attribute ‘imread‘报错问题
運(yùn)行python程序報(bào)錯(cuò):AttributeError: module 'scipy.misc' has no attribute 'imread'
?
報(bào)錯(cuò)原因1:scipy版本過高
解決方案:降低scipy版本,如下:
pip install scipy==1.2.1?報(bào)錯(cuò)原因2:查看scipy.misc幫助文件得知,imread依賴于pillow
解決方法:在該python環(huán)境中,安裝Pillow即可
pip install Pillow建議:
換一種讀取方法,不用安裝上面的步驟。直接改個(gè)接口函數(shù)即可。
官方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中已經(jīng)棄用,可以使用imageio.imread來代替
import imageio content_image = imageio.imread('./1.jpg')歡迎關(guān)注公眾號:算法工程師的學(xué)習(xí)日志,獲取算法工作相關(guān)的學(xué)習(xí)資料。如果有技術(shù)咨詢,提供有償咨詢,聯(lián)系qq(1762016542)或者公眾號留言
《新程序員》:云原生和全面數(shù)字化實(shí)踐50位技術(shù)專家共同創(chuàng)作,文字、視頻、音頻交互閱讀總結(jié)
以上是生活随笔為你收集整理的解决AttributeError: module ‘scipy.misc‘ has no attribute ‘imread‘报错问题的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python Pycharm在运行过程中
- 下一篇: Python tensorflow Mo