-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbotsort.yaml
More file actions
24 lines (20 loc) · 1.24 KB
/
botsort.yaml
File metadata and controls
24 lines (20 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Adapted from Ultralytics
# Ultralytics 🚀 AGPL-3.0 License - https://ultralytics.com/license
# Default Ultralytics settings for BoT-SORT tracker when using mode="track"
# For documentation and examples see https://docs.ultralytics.com/modes/track/
# For BoT-SORT source code see https://github.com/NirAharon/BoT-SORT
tracker_type: botsort # tracker type, ['botsort', 'bytetrack']
track_high_thresh: 0.9 # threshold for the first association
track_low_thresh: 0.01 # threshold for the second association
new_track_thresh: 0.85 # threshold for init new track if the detection does not match any tracks
track_buffer: 100 # buffer to calculate the time when to remove tracks
match_thresh: 0.8 # threshold for matching tracks
fuse_score: True # Whether to fuse confidence scores with the iou distances before matching
# min_box_area: 10 # threshold for min box areas(for tracker evaluation, not used for now)
# BoT-SORT settings
gmc_method: sparseOptFlow # method of global motion compensation
# ReID model related thresh
proximity_thresh: 0.99 # minimum IoU for valid match with ReID
appearance_thresh: 0.99 # minimum appearance similarity for ReID
with_reid: True
model: auto # uses native features if detector is YOLO else yolo11n-cls.pt