Image.PIL庫沒有屬性(函數)fromarray的解決方法

問題來源

將一個ndarray格式的圖片轉換爲PIL.Image的時候一直提示type object ‘Image’ has no attribute ‘fromarray’。通過檢查PIL.Image發現,該類並不含有官方文檔所說的fromarray函數
官方文檔

解決方案

重新安裝Pillow,就能在函數庫搜索到fromarray函數

pip uninstall Pillow
pip install Pillow==7.1.2

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章