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
| use_lane_filter | bool | Whether to filter elevation_map with vector_map | false |
56
-
| lane_margin | float | Margin distance from the lane polygon of the area to be included in the inpainting mask [m]. Used only when use_lane_filter=True. | 0.0 |
57
-
| use_sequential_load | bool | Whether to get point cloud map by service | false |
58
-
| sequential_map_load_num | int | The number of point cloud maps to load at once (only used when use_sequential_load is set true). This should not be larger than number of all point cloud map cells. | 1 |
59
-
60
-
### GridMap parameters
61
-
62
-
The parameters are described on `config/elevation_map_parameters.yaml`.
| pcl_grid_map_extraction/num_processing_threads | int | Number of threads for processing grid map cells. Filtering of the raw input point cloud is not parallelized. | 12 |
| pcl_grid_map_extraction/grid_map/min_num_points_per_cell | int | Minimum number of points in the point cloud that have to fall within any of the grid map cells. Otherwise the cell elevation will be set to NaN. | 3 |
79
-
| pcl_grid_map_extraction/grid_map/resolution | float | Resolution of the grid map. Width and length are computed automatically. | 0.3 |
80
-
| pcl_grid_map_extraction/grid_map/height_type | int | The parameter that determine the elevation of a cell `0: Smallest value among the average values of each cluster`, `1: Mean value of the cluster with the most points`| 1 |
81
-
| pcl_grid_map_extraction/grid_map/height_thresh | float | Height range from the smallest cluster (Only for height_type 1) | 1.0 |
82
-
83
-
### Point Cloud Pre-processing Parameters
84
-
85
-
#### Rigid body transform parameters
86
-
87
-
Rigid body transform that is applied to the point cloud before computing elevation.
| pcl_grid_map_extraction/cloud_transform/translation | float | Translation (xyz) that is applied to the input point cloud before computing elevation. | 0.0 |
92
-
| pcl_grid_map_extraction/cloud_transform/rotation | float | Rotation (intrinsic rotation, convention X-Y'-Z'') that is applied to the input point cloud before computing elevation. | 0.0 |
93
-
94
-
#### Cluster extraction parameters
95
-
96
-
Cluster extraction is based on pcl algorithms. See <https://pointclouds.org/documentation/tutorials/cluster_extraction.html> for more details.
| pcl_grid_map_extraction/cluster_extraction/cluster_tolerance | float | Distance between points below which they will still be considered part of one cluster. | 0.2 |
101
-
| pcl_grid_map_extraction/cluster_extraction/min_num_points | int | Min number of points that a cluster needs to have (otherwise it will be discarded). | 3 |
102
-
| pcl_grid_map_extraction/cluster_extraction/max_num_points | int | Max number of points that a cluster can have (otherwise it will be discarded). | 1000000 |
103
-
104
-
#### Outlier removal parameters
105
-
106
-
See <https://pointclouds.org/documentation/tutorials/statistical_outlier.html> for more explanation on outlier removal.
| pcl_grid_map_extraction/outlier_removal/mean_K | float | Number of neighbors to analyze for estimating statistics of a point. | 10 |
112
-
| pcl_grid_map_extraction/outlier_removal/stddev_threshold | float | Number of standard deviations under which points are considered to be inliers. | 1.0 |
113
-
114
-
#### Subsampling parameters
115
-
116
-
See <https://pointclouds.org/documentation/tutorials/voxel_grid.html> for more explanation on point cloud downsampling.
"description": "map_frame when loading elevation_map file",
22
+
"default": "map"
23
+
},
24
+
"use_sequential_load": {
25
+
"type": "boolean",
26
+
"description": "Whether to get point cloud map by service",
27
+
"default": true
28
+
},
29
+
"sequential_map_load_num": {
30
+
"type": "integer",
31
+
"description": "The number of point cloud maps to load at once (only used when use_sequential_load is set true). This should not be larger than number of all point cloud map cells",
32
+
"default": 1
33
+
},
34
+
"use_inpaint": {
35
+
"type": "boolean",
36
+
"description": "Whether to inpaint empty cells",
37
+
"default": true
38
+
},
39
+
"inpaint_radius": {
40
+
"type": "number",
41
+
"description": "Radius of a circular neighborhood of each point inpainted that is considered by the algorithm [m]",
42
+
"default": 0.3
43
+
},
44
+
"use_elevation_map_cloud_publisher": {
45
+
"type": "boolean",
46
+
"description": "Whether to publish `output/elevation_map_cloud`",
47
+
"default": false
48
+
},
49
+
"elevation_map_directory": {
50
+
"type": "string",
51
+
"description": "elevation_map file (bag2)",
52
+
"default": "path_default"
53
+
},
54
+
"use_lane_filter": {
55
+
"type": "boolean",
56
+
"description": "Whether to filter elevation_map with vector_map",
57
+
"default": false
58
+
},
59
+
"lane_margin": {
60
+
"type": "number",
61
+
"description": "Margin distance from the lane polygon of the area to be included in the inpainting mask [m]. Used only when use_lane_filter=True",
0 commit comments