本文地址: ://blog.csdn.net/weixin_44936889/article/details/112002152
注意:
本项目使用Yolov5 3.0版本,4.0版本需要替换掉models和utils文件夹
项目简介:
使用YOLOv5 + Deepsort实现车辆行人追踪和计数,代码封装成一个检测器类,更容易嵌入到自己的项目中。
代码地址(欢迎星):
最终效果:
YOLOv5检测器:
class Detector ( baseDet ):
def __init__ ( self ):
super ( Detector , self ). __init__ ()
self . init_model ()
self . build_config ()
def init_model ( self ):
2021-04-21 15:52:26
79.93MB
Python
1