多目标跟踪 | 基于anchor-free目标检测+ReID的实时一阶多类多目标跟踪算法实现

  • 项目应用场景
    • 面向多目标检测跟踪场景,项目采用 anchor-free 目标检测+ReID 的实时一阶段多类多目标跟踪算法实现,效果嘎嘎好。
  • 项目效果

  • 项目细节 ==> 具体参见项目 README.md
    • (1) 类别支持
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
    • (2) 跟踪或检测模式设置
self.parser.add_argument('--id_weight',
                         type=float,
                         default=1,  # 0for detection only and 1 for detection and re-ida
                         help='loss weight for id')  # ReID feature extraction or not
  • 项目获取

相关推荐

最近更新

  1. docker php8.1+nginx base 镜像 dockerfile 配置

    2024-04-09 06:52:01       94 阅读
  2. Could not load dynamic library ‘cudart64_100.dll‘

    2024-04-09 06:52:01       100 阅读
  3. 在Django里面运行非项目文件

    2024-04-09 06:52:01       82 阅读
  4. Python语言-面向对象

    2024-04-09 06:52:01       91 阅读

热门阅读

  1. Yocto - 如何给配方文件添加源码patch

    2024-04-09 06:52:01       31 阅读
  2. 【分布式】MIT 6.824 Lab 2C实现细节分析

    2024-04-09 06:52:01       34 阅读
  3. CV2不同图像插值方式的区别

    2024-04-09 06:52:01       29 阅读
  4. 【R语言基础】如何提取矩阵的上三角矩阵

    2024-04-09 06:52:01       37 阅读
  5. axios-mock-adapter使用

    2024-04-09 06:52:01       39 阅读
  6. ARM的CI-700和Arteris的NoC对比

    2024-04-09 06:52:01       41 阅读
  7. 【华为OD机试】游戏分组、王者荣耀【C卷|100分】

    2024-04-09 06:52:01       36 阅读
  8. Windows安装SSH教程

    2024-04-09 06:52:01       39 阅读