YOLOv5 detect运行报错assert img0 is not None, f‘Image Not Found {path}‘解决方案

运行detect去跑bus图片的demo,下载完数据集后发生如下报错:

YOLOv5 detect运行报错assert img0 is not None, f‘Image Not Found {path}‘解决方案_第1张图片

报错竟然提示找不到图片,但是我查看了文件夹明明有图片

后来将dataset中的第161行

p = str(Path(path).resolve())  # os-agnostic absolute path

改为

p = str(Path(path))  # os-agnostic absolute path

就可以了

你可能感兴趣的:(报错解决方案合集,目标检测)