hpc203 / yolov5-dnn-cpp-python

用opencv的dnn模块做yolov5目标检测,包含C++和Python两个版本的程序

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Error and optimization

samsha1971 opened this issue · comments

yolov5 release tag v5 , main_yolov5.py run error in line 88: “bs, _, ny, nx, _ = outs[i].shape“ ,perhaps need change to “bs, _, ny, nx, _ = outs[i].shape ” ?

Other, detect decoding is too slow, how too ?

yolov5 release tag v5 , main_yolov5.py run error in line 88: “bs, _, ny, nx, _ = outs[i].shape“ ,perhaps need change to “bs, _, ny, nx, _ = outs[i].shape ” ?

Other, detect decoding is too slow, how too ?

you can run
https://github.com/hpc203/yolov5-dnn-cpp-python-v2