继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

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

qq_莫非
关注TA
已关注
手记 21
粉丝 19
获赞 4

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)

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

打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP