Skip to content

Commit 652d168

Browse files
committed
chore: fixed the schema
Signed-off-by: Kenzo Lobos-Tsunekawa <kenzo.lobos@tier4.jp>
1 parent 17af8d8 commit 652d168

File tree

1 file changed

+12
-18
lines changed

1 file changed

+12
-18
lines changed

sensing/autoware_cuda_pointcloud_preprocessor/schema/cuda_pointcloud_preprocessor.schema.json

+12-18
Original file line numberDiff line numberDiff line change
@@ -42,32 +42,32 @@
4242
"crop_box.min_x": {
4343
"type": "array",
4444
"description": "An array in which each element is the minimum x value in a crop box",
45-
"default": [1.0]
45+
"default": []
4646
},
4747
"crop_box.min_y": {
4848
"type": "array",
4949
"description": "An array in which each element is the minimum y value in a crop box",
50-
"default": [1.0]
50+
"default": []
5151
},
5252
"crop_box.min_z": {
5353
"type": "array",
5454
"description": "An array in which each element is the minimum z value in a crop box",
55-
"default": [1.0]
55+
"default": []
5656
},
5757
"crop_box.max_x": {
5858
"type": "array",
5959
"description": "An array in which each element is the maximum x value in a crop box",
60-
"default": [-1.0]
60+
"default": []
6161
},
6262
"crop_box.max_y": {
6363
"type": "array",
6464
"description": "An array in which each element is the maximum y value in a crop box",
65-
"default": [-1.0]
65+
"default": []
6666
},
6767
"crop_box.max_z": {
6868
"type": "array",
6969
"description": "An array in which each element is the maximum z value in a crop box",
70-
"default": [-1.0]
70+
"default": []
7171
}
7272
},
7373
"required": [
@@ -77,18 +77,12 @@
7777
"distance_ratio",
7878
"object_length_threshold",
7979
"num_points_threshold",
80-
"self_crop.min_x",
81-
"self_crop.min_y",
82-
"self_crop.min_z",
83-
"self_crop.max_x",
84-
"self_crop.max_y",
85-
"self_crop.max_z",
86-
"mirror_crop.min_x",
87-
"mirror_crop.min_y",
88-
"mirror_crop.min_z",
89-
"mirror_crop.max_x",
90-
"mirror_crop.max_y",
91-
"mirror_crop.max_z"
80+
"crop_box.min_x",
81+
"crop_box.min_y",
82+
"crop_box.min_z",
83+
"crop_box.max_x",
84+
"crop_box.max_y",
85+
"crop_box.max_z"
9286
],
9387
"additionalProperties": false
9488
}

0 commit comments

Comments
 (0)