botsort.yaml 890 B

123456789101112131415161718
  1. # Ultralytics YOLO 🚀, AGPL-3.0 license
  2. # Default YOLO tracker settings for BoT-SORT tracker https://github.com/NirAharon/BoT-SORT
  3. tracker_type: botsort # tracker type, ['botsort', 'bytetrack']
  4. track_high_thresh: 0.5 # threshold for the first association
  5. track_low_thresh: 0.1 # threshold for the second association
  6. new_track_thresh: 0.6 # threshold for init new track if the detection does not match any tracks
  7. track_buffer: 30 # buffer to calculate the time when to remove tracks
  8. match_thresh: 0.8 # threshold for matching tracks
  9. # min_box_area: 10 # threshold for min box areas(for tracker evaluation, not used for now)
  10. # mot20: False # for tracker evaluation(not used for now)
  11. # BoT-SORT settings
  12. gmc_method: sparseOptFlow # method of global motion compensation
  13. # ReID model related thresh (not supported yet)
  14. proximity_thresh: 0.5
  15. appearance_thresh: 0.25
  16. with_reid: False