-
Notifications
You must be signed in to change notification settings - Fork 0
/
blinkers.json
57 lines (57 loc) · 1.81 KB
/
blinkers.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
{
"subsample_factor": 10,
"topic_pattern": "camera[01]",
"blurred_image" : true,
"blurred_suffix" : "blurred",
"segmented_image" : true,
"segmented_suffix" : "segmented",
"detections_image" : true,
"detections_suffix" : "detections",
"tasks": [
{
"prompt": "roads. lanes",
"required_keywords": [],
"blur" : false,
"draw_detection" : false,
"draw_segmentation" : true,
"blur_factor" : 10.0,
"color" : [0, 0, 255],
"is_inside" : [],
"is_not_inside" : [],
"box_threshold": 0.2,
"text_threshold": 0.15
},
{
"prompt": "vehicles. cars. buses. trucks. bicycles, motorcycles",
"required_keywords": [],
"blur" : false,
"draw_detection" : true,
"draw_segmentation" : true,
"blur_factor" : 10.0,
"color" : [0, 255, 0],
"is_inside" : [],
"is_not_inside" : ["lanes", "roads"],
"not_inside_max_ratio" : 0.2,
"not_inside_max_iou" : 0.3,
"box_threshold": 0.2,
"text_threshold": 0.15
},
{
"prompt": "blinkers. turn signals",
"required_keywords": [],
"blur" : false,
"draw_detection" : true,
"draw_segmentation" : true,
"blur_factor" : 3.0,
"color" : [255, 0, 255],
"is_inside" : ["car", "vehicle", "bus", "truck"],
"inside_min_ratio" : 0.8,
"inside_max_iou" : 0.5,
"is_not_inside" : ["lanes", "roads"],
"not_inside_max_ratio" : 0.1,
"not_inside_max_iou" : 0.1,
"box_threshold": 0.2,
"text_threshold": 0.15
}
]
}