You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`cost_threshold`| int | Cost threshold of occupancy grid map (0~100). 100 means 100% probability that there is an obstacle, close to 50 means that it is indistinguishable whether it is an obstacle or free space, 0 means that there is no obstacle. |
48
-
|`enable_debugger`| bool | Whether to output the point cloud for debugging. |
49
-
|`use_radius_search_2d_filter`| bool | Whether or not to apply density-based outlier filters to objects that are judged to have low probability of occupancy on the occupancy grid map. |
50
-
|`radius_search_2d_filter/search_radius`| float | Radius when calculating the density |
51
-
|`radius_search_2d_filter/min_points_and_distance_ratio`| float | Threshold value of the number of point clouds per radius when the distance from baselink is 1m, because the number of point clouds varies with the distance from baselink. |
52
-
|`radius_search_2d_filter/min_points`| int | Minimum number of point clouds per radius |
53
-
|`radius_search_2d_filter/max_points`| int | Maximum number of point clouds per radius |
"description": "Threshold value of the number of point clouds per radius when the distance from baselink is 1m, because the number of point clouds varies with the distance from baselink"
18
+
},
19
+
"radius_search_2d_filter.min_points": {
20
+
"type": "number",
21
+
"default": 4,
22
+
"description": "Minimum number of point clouds per radius"
23
+
},
24
+
"radius_search_2d_filter.max_points": {
25
+
"type": "number",
26
+
"default": 70,
27
+
"description": "Maximum number of point clouds per radius"
28
+
},
29
+
"radius_search_2d_filter.max_filter_points_nb": {
30
+
"type": "number",
31
+
"default": 15000,
32
+
"description": "Maximum number of point clouds to be filtered"
33
+
},
34
+
"map_frame": {
35
+
"type": "string",
36
+
"default": "map",
37
+
"description": "map frame id"
38
+
},
39
+
"base_link_frame": {
40
+
"type": "string",
41
+
"default": "base_link",
42
+
"description": "base link frame id"
43
+
},
44
+
"cost_threshold": {
45
+
"type": "number",
46
+
"default": 45,
47
+
"description": "Cost threshold of occupancy grid map (0~100). 100 means 100% probability that there is an obstacle, close to 50 means that it is indistinguishable whether it is an obstacle or free space, 0 means that there is no obstacle"
48
+
},
49
+
"use_radius_search_2d_filter": {
50
+
"type": "boolean",
51
+
"default": true,
52
+
"description": "Whether or not to apply density-based outlier filters to objects that are judged to have low probability of occupancy on the occupancy grid map"
53
+
},
54
+
"enable_debugger": {
55
+
"type": "boolean",
56
+
"default": false,
57
+
"description": "Whether to output the point cloud for debugging"
0 commit comments