ElodieA commited on
Commit
d41b3ab
·
verified ·
1 Parent(s): ed2bad4

Update insect_tracker.yaml

Browse files
Files changed (1) hide show
  1. insect_tracker.yaml +16 -10
insect_tracker.yaml CHANGED
@@ -1,11 +1,17 @@
1
- # Ultralytics YOLO 🚀, AGPL-3.0 license
2
- # Default YOLO tracker settings for ByteTrack tracker https://github.com/ifzhang/ByteTrack
3
-
4
- tracker_type: bytetrack # tracker type, ['botsort', 'bytetrack']
5
- track_high_thresh: 0.6 # threshold for the first association
6
- track_low_thresh: 0.2 # threshold for the second association
7
- new_track_thresh: 0.6 # threshold for init new track if the detection does not match any tracks
8
- track_buffer: 5000 # 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)
 
1
+ # Ultralytics YOLO 🚀, AGPL-3.0 license
2
+ # Default YOLO tracker settings for ByteTrack tracker https://github.com/ifzhang/ByteTrack
3
+ tracker_type: bytetrack
4
+ track_high_thresh: 0.4 # Lowered to be more inclusive of initial associations
5
+ track_low_thresh: 0.1 # Lowered to refine associations after initial matching
6
+ new_track_thresh: 0.4 # Lowered to initiate new tracks for detections with lower confidence
7
+ track_buffer: 10000 # Increased to maintain tracks for a longer duration
8
+ match_thresh: 0.6 # Adjusted to allow more flexible track matching
9
+
10
+ #tracker_type: bytetrack # tracker type, ['botsort', 'bytetrack']
11
+ #track_high_thresh: 0.6 # threshold for the first association
12
+ #track_low_thresh: 0.2 # threshold for the second association
13
+ #new_track_thresh: 0.6 # threshold for init new track if the detection does not match any tracks
14
+ #track_buffer: 5000 # buffer to calculate the time when to remove tracks
15
+ #match_thresh: 0.7 # threshold for matching tracks
16
+ # min_box_area: 10 # threshold for min box areas(for tracker evaluation, not used for now)
17
  # mot20: False # for tracker evaluation(not used for now)