-
Notifications
You must be signed in to change notification settings - Fork 3
/
mot_configs.py
39 lines (37 loc) · 1.09 KB
/
mot_configs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import os.path as osp
from demo_toolkit import *
import wml_utils as wmlu
from eval_mot import eval as mot_eval
from person_det import *
from mfast_reid_t1.fast_reid import MFastReIDT1
config_sportstrack = {'model': 'SportsTracker',
'TrackName': 'PDSMV2SportsTrackerT1',
'use_reid': True,
'reid_model': MFastReIDT1,
'person_det': PersonDetectionSMSV2,
'det_thresh': 0.6919616344544846,
'reid_thresh': 0.306260605465699,
'max_person_nr': -1,
'track_buffer': 143,
'thresh': [0.5469308237306498, 0.641378722, 0.36310692739022454],
'nms_thresh': 0.45681998911015786
}
config_byte_tracker = { #(61.365 78.858 47.839)
"model":"BYTETracker",
"TrackName":"PDSMV2ByteTracker",
"use_reid":False,
"reid_model":MFastReIDT1,
"person_det":PersonDetectionSMSV2,
"det_thresh":0.7,
"max_person_nr":-1,
}
config_bot_sort = { #(65.707 78.583 54.997)
"model":"BoTSORT",
"TrackName":"PDSMV2BoTSORT",
"use_reid":True,
"reid_model":MFastReIDT1,
"person_det":PersonDetectionSMSV2,
"det_thresh":0.7,
"max_person_nr":-1,
}
global_config = config_sportstrack