1
1
{
2
2
"$schema" : " http://json-schema.org/draft-07/schema#" ,
3
- "title" : " autoware_pointcloud_preprocessor parameters " ,
3
+ "title" : " Parameters for Blockage Diag Node " ,
4
4
"type" : " object" ,
5
5
"definitions" : {
6
- "blockage_diag_node " : {
6
+ "blockage_diag " : {
7
7
"type" : " object" ,
8
8
"properties" : {
9
9
"blockage_ratio_threshold" : {
10
10
"type" : " number" ,
11
11
"description" : " The threshold of blockage area ratio. If the blockage value exceeds this threshold, the diagnostic state will be set to ERROR." ,
12
- "default" : 0.1 ,
13
- "minimum" : " 0 "
12
+ "default" : " 0.1" ,
13
+ "minimum" : 0
14
14
},
15
15
"blockage_count_threshold" : {
16
- "type" : " integer " ,
16
+ "type" : " number " ,
17
17
"description" : " The threshold of number continuous blockage frames" ,
18
- "default" : 50 ,
19
- "minimum" : " 0 "
18
+ "default" : " 50 " ,
19
+ "minimum" : 0
20
20
},
21
21
"blockage_buffering_frames" : {
22
22
"type" : " integer" ,
23
23
"description" : " The number of buffering about blockage detection [range:1-200]" ,
24
- "default" : 2 ,
24
+ "default" : " 2 " ,
25
25
"minimum" : 1 ,
26
26
"maximum" : 200
27
27
},
28
28
"blockage_buffering_interval" : {
29
29
"type" : " integer" ,
30
30
"description" : " The interval of buffering about blockage detection" ,
31
- "default" : 1 ,
32
- "minimum" : " 0 "
31
+ "default" : " 1 " ,
32
+ "minimum" : 0
33
33
},
34
34
"enable_dust_diag" : {
35
35
"type" : " boolean" ,
36
- "description" : " Enable dust diagnostic" ,
37
- "default" : " false"
36
+ "description" : " enable dust diagnostic" ,
37
+ "default" : false
38
38
},
39
39
"publish_debug_image" : {
40
40
"type" : " boolean" ,
41
- "description" : " Publish debug image" ,
42
- "default" : " false"
41
+ "description" : " publish debug image" ,
42
+ "default" : false
43
43
},
44
44
"dust_ratio_threshold" : {
45
45
"type" : " number" ,
46
46
"description" : " The threshold of dusty area ratio" ,
47
- "default" : 0.2 ,
48
- "minimum" : " 0 "
47
+ "default" : " 0.2" ,
48
+ "minimum" : 0
49
49
},
50
50
"dust_count_threshold" : {
51
51
"type" : " integer" ,
52
52
"description" : " The threshold of number continuous frames include dusty area" ,
53
- "default" : 10 ,
54
- "minimum" : " 0 "
53
+ "default" : " 10 " ,
54
+ "minimum" : 0
55
55
},
56
56
"dust_kernel_size" : {
57
57
"type" : " integer" ,
58
58
"description" : " The kernel size of morphology processing in dusty area detection" ,
59
- "default" : 2 ,
60
- "minimum" : " 0 "
59
+ "default" : " 2 " ,
60
+ "minimum" : 0
61
61
},
62
62
"dust_buffering_frames" : {
63
63
"type" : " integer" ,
64
64
"description" : " The number of buffering about dusty area detection [range:1-200]" ,
65
- "default" : 10 ,
65
+ "default" : " 10 " ,
66
66
"minimum" : 1 ,
67
67
"maximum" : 200
68
68
},
69
69
"dust_buffering_interval" : {
70
70
"type" : " integer" ,
71
71
"description" : " The interval of buffering about dusty area detection" ,
72
- "default" : 1 ,
73
- "minimum" : " 0 "
72
+ "default" : " 1 " ,
73
+ "minimum" : 0
74
74
},
75
75
"max_distance_range" : {
76
76
"type" : " number" ,
77
77
"description" : " Maximum view range for the LiDAR" ,
78
- "default" : 200.0 ,
79
- "minimum" : " 0 "
78
+ "default" : " 200.0" ,
79
+ "minimum" : 0
80
80
},
81
81
"horizontal_resolution" : {
82
82
"type" : " number" ,
83
83
"description" : " The horizontal resolution of depth map image [deg/pixel]" ,
84
- "default" : 0.4 ,
85
- "minimum" : " 0 "
84
+ "default" : " 0.4" ,
85
+ "minimum" : 0
86
86
},
87
87
"blockage_kernel" : {
88
88
"type" : " integer" ,
89
89
"description" : " The kernel size of morphology processing the detected blockage area" ,
90
- "default" : 10 ,
91
- "minimum" : " 0 "
90
+ "default" : " 10 " ,
91
+ "minimum" : 0
92
92
},
93
93
"angle_range" : {
94
94
"type" : " array" ,
105
105
"vertical_bins" : {
106
106
"type" : " integer" ,
107
107
"description" : " The LiDAR channel" ,
108
- "default" : 40 ,
109
- "minimum" : " 0 "
108
+ "default" : " 40 " ,
109
+ "minimum" : 0
110
110
},
111
111
"is_channel_order_top2down" : {
112
112
"type" : " boolean" ,
116
116
"horizontal_ring_id" : {
117
117
"type" : " integer" ,
118
118
"description" : " The id of horizontal ring of the LiDAR" ,
119
- "default" : 18 ,
120
- "minimum" : " 0 "
119
+ "default" : " 18 " ,
120
+ "minimum" : 0
121
121
}
122
122
},
123
123
"required" : [
140
140
" is_channel_order_top2down" ,
141
141
" horizontal_ring_id"
142
142
],
143
- "additionalProperties" : " false"
143
+ "additionalProperties" : false
144
144
}
145
145
},
146
146
"properties" : {
147
147
"/**" : {
148
148
"type" : " object" ,
149
149
"properties" : {
150
150
"ros__parameters" : {
151
- "$ref" : " #/definitions/blockage_diag_node "
151
+ "$ref" : " #/definitions/blockage_diag "
152
152
}
153
153
},
154
154
"required" : [" ros__parameters" ],
155
- "additionalProperties" : " false"
155
+ "additionalProperties" : false
156
156
}
157
157
},
158
158
"required" : [" /**" ],
159
- "additionalProperties" : " false"
160
- }
159
+ "additionalProperties" : false
160
+ }
161
+
0 commit comments