Upload oc_sort.yaml
Browse files- tracker/oc_sort.yaml +18 -0
tracker/oc_sort.yaml
ADDED
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
OC_SORT:
|
2 |
+
# The name of the sort
|
3 |
+
CONF_THRESHOLD: 0.05
|
4 |
+
# The threshold for the confidence score
|
5 |
+
IOU_THRESHOLD: 0.3
|
6 |
+
# The threshold for the IOU score
|
7 |
+
MAX_AGE: 30
|
8 |
+
# The maximum age of the track
|
9 |
+
MIN_HITS: 3
|
10 |
+
# The minimum number of hits for the track
|
11 |
+
DELTA_T: 3
|
12 |
+
# The time interval between two frames
|
13 |
+
ASSO_FUNC: "iou" # giou, ciou, diou, ct_dist
|
14 |
+
# The association function
|
15 |
+
INERTIA: 0.2
|
16 |
+
# The inertia of the track
|
17 |
+
USE_BYTE: False
|
18 |
+
# Whether to use byte as the unit of the bounding box
|