运行官网YOLO V5的detect.py出错

2020/9/6 8:03:44

本文主要是介绍运行官网YOLO V5的detect.py出错,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

assert img0 is not None, 'Image Not Found ' + path

经过仔细排查,发现是utils包下的datasets.py文件出错。

出错位置为LoadImages类中的path路径,

class LoadImages:  # for inference
    def __init__(self, path, img_size=640):
        p = str(Path(path))  # os-agnostic
        print(p,'-------------')
        p = os.path.abspath(p)  # absolute path

去掉或者注释:

p = os.path.abspath(p)  # absolute path

这一条转为绝对路径的代码即可成功运行。



这篇关于运行官网YOLO V5的detect.py出错的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程