-
- 面向多目标检测跟踪场景,项目采用 anchor-free 目标检测+ReID 的实时一阶段多类多目标跟踪算法实现,效果嘎嘎好。
- 项目细节 ==> 具体参见项目
README.md
1~10 object classes are what we need non-interest-zone (0)pedestrian (1) --> 0 people (2) --> 1 bicycle (3) --> 2 car (4) --> 3 van (5) --> 4 truck (6) --> 5 tricycle (7) --> 6 awning-tricycle (8) --> 7 bus (9) --> 8 motor (10) --> 9 others (11)self.parser.add_argument('--reid_cls_ids',default='0,1,2,3,4,5,6,7,8,9', # '0,1,2,3,4' or '0,1,2,3,4,5,6,7,8,9'help='') # the object classes need to do reid
self.parser.add_argument('--id_weight',type=float,default=1, # 0for detection only and 1 for detection and re-idahelp='loss weight for id') # ReID feature extraction or not
-
- https://download.csdn.net/download/weixin_42405819/89094502