forked from autowarefoundation/autoware_universe
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathlidar_apollo_instance_segmentation.json
79 lines (79 loc) · 2.15 KB
/
lidar_apollo_instance_segmentation.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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Parameters for lidar_apollo_instance_segmentation",
"type": "object",
"definitions": {
"lidar_apollo_instance_segmentation": {
"type": "object",
"properties": {
"score_threshold": {
"type": "number",
"default": 0.8,
"description": "If the score of a detected object is lower than this value, the object is ignored."
},
"range": {
"type": "number",
"default": 60,
"description": "Half of the length of feature map sides.[m]."
},
"width": {
"type": "number",
"default": 640,
"description": "The grid width of feature map."
},
"height": {
"type": "number",
"default": 640,
"description": "The grid height of feature map."
},
"precision": {
"type": "string",
"default": "fp32"
},
"use_intensity_feature": {
"type": "boolean",
"default": "true",
"description": "The flag to use intensity feature of pointcloud."
},
"use_constant_feature": {
"type": "boolean",
"default": "false",
"description": "The flag to use direction and distance feature of pointcloud."
},
"target_frame": {
"type": "string",
"default": "base_link",
"description": "Pointcloud data is transformed into this frame."
},
"z_offset": {
"type": "number",
"default": -2.0,
"description": "z offset from target frame. [m]."
}
},
"required": [
"score_threshold",
"range",
"width",
"height",
"precision",
"use_intensity_feature",
"use_constant_feature",
"target_frame",
"z_offset"
]
}
},
"properties": {
"/**": {
"type": "object",
"properties": {
"ros__parameters": {
"$ref": "#/definitions/lidar_apollo_instance_segmentation"
}
},
"required": ["ros__parameters"]
}
},
"required": ["/**"]
}