找不到文件-突然停止工作

时间:2019-10-22 21:28:00

标签: python file-not-found imread

我正在遍历目录和子目录中的文件,并对每个图像执行功能。 它突然停止工作,找不到文件

我使用的是完整路径名,并检查了所有拼写是否正确。

from pathlib import Path

Path = '/Users/.../images_for_python/'

files = []
# r=root, d=directories, f = files
for r, d, f in os.walk(Path):
    for face_image in f:
        if face_image.endswith("g"): 

            img = io.imread(face_image) 
            dets = detector(img)

错误出现在“ img = io.imread(face_image)”行 FileNotFoundError:[错误2]没有这样的文件或目录:'100_F23_Neutral.jpg'

确定是因为我未指定文件名而找到了文件? 非常感谢您的帮助,因为我敢肯定这只是一个愚蠢的错误!

0 个答案:

没有答案