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