Spaces:
Sleeping
Sleeping
Upload botsort.yaml
Browse files- botsort.yaml +18 -0
botsort.yaml
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
| 2 |
+
# Default YOLO tracker settings for BoT-SORT tracker https://github.com/NirAharon/BoT-SORT
|
| 3 |
+
|
| 4 |
+
tracker_type: botsort # tracker type, ['botsort', 'bytetrack']
|
| 5 |
+
track_high_thresh: 0.8 # threshold for the first association
|
| 6 |
+
track_low_thresh: 0.7 # threshold for the second association
|
| 7 |
+
new_track_thresh: 0.9 # threshold for init new track if the detection does not match any tracks
|
| 8 |
+
track_buffer: 60 # buffer to calculate the time when to remove tracks
|
| 9 |
+
match_thresh: 0.7 # threshold for matching tracks
|
| 10 |
+
# min_box_area: 10 # threshold for min box areas(for tracker evaluation, not used for now)
|
| 11 |
+
# mot20: False # for tracker evaluation(not used for now)
|
| 12 |
+
|
| 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
|