bytetrack.yaml 694 B

1234567891011
  1. # Ultralytics YOLO 🚀, AGPL-3.0 license
  2. # Default YOLO tracker settings for ByteTrack tracker https://github.com/ifzhang/ByteTrack
  3. tracker_type: bytetrack # 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)