-
Notifications
You must be signed in to change notification settings - Fork 0
/
anonymize.json
89 lines (89 loc) · 2.95 KB
/
anonymize.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
81
82
83
84
85
86
87
88
89
{
"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": "persons. pedestrians. humans",
"required_keywords": [],
"blur" : false,
"draw_detection" : true,
"draw_segmentation" : true,
"blur_factor" : 10.0,
"color" : [255, 0, 0],
"is_inside" : [],
"is_not_inside" : ["lanes", "roads", "car", "vehicle", "bus", "truck", "bicycle", "motorcycle"],
"not_inside_max_ratio" : 0.1,
"not_inside_max_iou" : 0.1,
"box_threshold": 0.2,
"text_threshold": 0.15
},
{
"prompt": "license plates",
"required_keywords": [],
"blur" : true,
"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
},
{
"prompt": "faces",
"required_keywords": [],
"blur" : true,
"draw_detection" : true,
"draw_segmentation" : true,
"blur_factor" : 5.0,
"color" : [255, 0, 255],
"is_inside" : ["person", "pedestrian", "human"],
"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
}
]
}