YOLOV5报错: in __next__ assert img0 is not None, ‘Image Not Found ‘ + path
直接附上解决方法:将utils/datasets.py文件中的p = str(Path(path).absolute()) # os-agnostic absolute path改为p = str(Path(path))如图,为修改后的结果:修改后重新运行即可