botsort.yaml 1.1 KB

123456789101112131415161718192021
  1. # Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
  2. # Default Ultralytics settings for BoT-SORT tracker when using mode="track"
  3. # For documentation and examples see https://docs.ultralytics.com/modes/track/
  4. # For BoT-SORT source code see https://github.com/NirAharon/BoT-SORT
  5. tracker_type: botsort # tracker type, ['botsort', 'bytetrack']
  6. track_high_thresh: 0.25 # threshold for the first association
  7. track_low_thresh: 0.1 # threshold for the second association
  8. new_track_thresh: 0.25 # threshold for init new track if the detection does not match any tracks
  9. track_buffer: 30 # buffer to calculate the time when to remove tracks
  10. match_thresh: 0.8 # threshold for matching tracks
  11. fuse_score: True # Whether to fuse confidence scores with the iou distances before matching
  12. # min_box_area: 10 # threshold for min box areas(for tracker evaluation, not used for now)
  13. # BoT-SORT settings
  14. gmc_method: sparseOptFlow # method of global motion compensation
  15. # ReID model related thresh (not supported yet)
  16. proximity_thresh: 0.5
  17. appearance_thresh: 0.25
  18. with_reid: False