-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathm3det_normal.json
80 lines (80 loc) · 2.05 KB
/
m3det_normal.json
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"description": {
"preset_name_cn": "M3Det-通用",
"preset_name_en": "M3Det-general",
"intro_cn": "自适应检测器,适用于多数检测场景。",
"intro_en": "Adaptive meteor detector. Suitable for most detection scenarios."
},
"loader": {
"name": "ThreadVideoLoader",
"wrapper": "OpenCVVideoWrapper",
"resize": 960,
"exp_time": "auto",
"merge_func": "max",
"grayscale": true,
"upper_bound": 0.5
},
"detector": {
"name": "M3Detector",
"window_sec": 1,
"cfg": {
"binary": {
"adaptive_bi_thre": true,
"init_value": 7,
"sensitivity": "normal",
"area": 0.1,
"interval": 2
},
"hough_line": {
"threshold": 10,
"min_len": 10,
"max_gap": 10
},
"dynamic": {
"dy_mask": true,
"window_sec": 5
}
}
},
"collector": {
"meteor_cfg": {
"min_len": 15,
"max_interval": 4,
"time_range": [
0,
8
],
"speed_range": [
2,
12
],
"drct_range": [
0,
0.6
],
"det_thre": 0.5,
"thre2": 2048
},
"recheck_cfg": {
"switch": true,
"model": {
"name": "YOLOModel",
"weight_path": "./weights/yolov5s_v2.onnx",
"dtype": "float32",
"nms": true,
"warmup": true,
"pos_thre": 0.25,
"nms_thre": 0.45,
"multiscale_pred":2,
"multiscale_partition":2
},
"save_path": ""
},
"positive_cfg": {
"positive_cates": [
"METEOR",
"RED_SPRITE"
]
}
}
}