yolov7 - 报错问题— assert img0 is not None, ‘Image Not Found ‘ + pathAssertionError: Image Not Found

在这里插入图片描述
解决办法:yolov5怎么办的yolov7就怎么办
问题:在datasets.py里面获取路径是绝对路径,而绝对路径里面有中文就会导致报错,所以解决办法就是在路径里面避免使用中文或者不使用绝对路径,目前该相对路径可以解决这个问题:运行detect.py成功的截图如下,修改方式见后面的截图
但是也有问题,相对路径后面万一会有一些奇怪的bug,不过先把眼前的bug解决吧,不然连这个头都开不起来,等啥时候相对路径出问题了再说吧
yolov7 - 报错问题— assert img0 is not None, ‘Image Not Found ‘ + pathAssertionError: Image Not Found_第1张图片
yolov7 - 报错问题— assert img0 is not None, ‘Image Not Found ‘ + pathAssertionError: Image Not Found_第2张图片
yolov7 - 报错问题— assert img0 is not None, ‘Image Not Found ‘ + pathAssertionError: Image Not Found_第3张图片
yolov7 - 报错问题— assert img0 is not None, ‘Image Not Found ‘ + pathAssertionError: Image Not Found_第4张图片
在utils/datasets.py里面找到p = str(Path(path).absolute())并删除.absolute()

你可能感兴趣的:(yolov7,YOLO)