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
Copy file name to clipboardExpand all lines: elevation_mapping_cupy/config/core/core_param.yaml
+13-9Lines changed: 13 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -1,11 +1,11 @@
1
1
elevation_mapping_node:
2
2
ros__parameters:
3
3
#### Basic parameters ########
4
-
resolution: 0.04# resolution in m.
5
-
map_length: 8.0# map's size in m.
4
+
resolution: 0.1# resolution in m.
5
+
map_length: 15.0# map's size in m.
6
6
sensor_noise_factor: 0.05# point's noise is sensor_noise_factor*z^2 (z is distance from sensor).
7
7
mahalanobis_thresh: 2.0# points outside this distance is outlier.
8
-
outlier_variance: 0.01# if point is outlier, add this value to the cell.
8
+
outlier_variance: 0.0`1# if point is outlier, add this value to the cell.
9
9
drift_compensation_variance_inler: 0.05# cells under this value is used for drift compensation.
10
10
max_drift: 0.1# drift compensation happens only the drift is smaller than this value (for safety)
11
11
drift_compensation_alpha: 0.1# drift compensation alpha for smoother update of drift compensation
@@ -20,8 +20,8 @@ elevation_mapping_node:
20
20
orientation_noise_thresh: 0.01# if the orientation change is bigger than this value, the drift compensation happens.
21
21
position_lowpass_alpha: 0.2# lowpass filter alpha used for detecting movements.
22
22
orientation_lowpass_alpha: 0.2# lowpass filter alpha used for detecting movements.
23
-
min_valid_distance: 0.5# points with shorter distance will be filtered out.
24
-
max_height_range: 1.0# points higher than this value from sensor will be filtered out to disable ceiling.
23
+
min_valid_distance: 4.0# points with shorter distance will be filtered out.
24
+
max_height_range: 10.5# points higher than this value from sensor will be filtered out
25
25
ramped_height_range_a: 0.3# if z > max(d - ramped_height_range_b, 0) * ramped_height_range_a + ramped_height_range_c, reject.
26
26
ramped_height_range_b: 1.0# if z > max(d - ramped_height_range_b, 0) * ramped_height_range_a + ramped_height_range_c, reject.
27
27
ramped_height_range_c: 0.2# if z > max(d - ramped_height_range_b, 0) * ramped_height_range_a + ramped_height_range_c, reject.
@@ -44,16 +44,20 @@ elevation_mapping_node:
44
44
overlap_clear_range_xy: 4.0# xy range [m] for clearing overlapped area. this defines the valid area for overlap clearance. (used for multi floor setting)
45
45
overlap_clear_range_z: 2.0# z range [m] for clearing overlapped area. cells outside this range will be cleared. (used for multi floor setting)
46
46
47
-
map_frame: 'odom'# The map frame where the odometry source uses.
48
-
base_frame: 'base_footprint'# The robot's base frame. This frame will be a center of the map.
49
-
corrected_map_frame: 'odom'
47
+
map_frame: 'World'# The map frame where the odometry source uses.
48
+
base_frame: 'BASE'# The robot's base frame. This frame will be a center of the map.
49
+
corrected_map_frame: 'World'
50
50
51
51
52
+
# map_frame: 'World' # The map frame where the odometry source uses.
53
+
# base_frame: 'BASE' # The robot's base frame. This frame will be a center of the map.
54
+
# corrected_map_frame: 'World'
55
+
52
56
#### Feature toggles ########
53
57
enable_edge_sharpen: true
54
58
enable_visibility_cleanup: true
55
59
enable_drift_compensation: true
56
-
enable_overlap_clearance: true
60
+
enable_overlap_clearance: true`
57
61
enable_pointcloud_publishing: false
58
62
enable_drift_corrected_TF_publishing: false
59
63
enable_normal_color: false # If true, the map contains 'color' layer corresponding to normal. Add 'color' layer to the publishers setting if you want to visualize.
0 commit comments