3 回答

TA貢獻1835條經(jīng)驗 獲得超7個贊
你能加載任何圖像嗎?我認為您收到錯誤是因為您的目錄無效,這意味著您的根目錄已定義C:\something\something
,然后在某些時候您切換到folder/folder/folder
. 您只需要使用反斜杠。此外,我很確定您的代碼是/
在指定文件類型 (JPG) 后添加的。那不應(yīng)該在那里。

TA貢獻1850條經(jīng)驗 獲得超11個贊
我建議你使用PathPython 3 庫來處理路徑。我的猜測是路徑?jīng)]有被正確識別?;谠揚ath庫,我將更改代碼中的幾行,正在定義 qhere 路徑:
# header
from pathlib import Path
# ...
directory_root = Path("C:\\Users\\vipek\\Desktop\\PlantVillage-Dataset\\raw\\color")
# ...
plant_disease_folder_list = listdir(directory_root / plant_folder)
# ...
plant_disease_image_list = listdir(directory_root / plant_folder / plant_disease_folder)
并確保避免plant_disease_image_list路徑中的最后一個“/”!

TA貢獻1827條經(jīng)驗 獲得超9個贊
我會說里面的空間00416648-be6e-4bd4-bc8d-82f43f8a7240___GCREC_Bact.Sp 3110.JPG
導(dǎo)致了這個錯誤
添加回答
舉報