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
An example fully-described configuration is shown below.
101
101
102
+
Note: We supply two PCL filters within STVL to massage the data to lower compute overhead. STVL has an approximate voxel filter to make the data more sparse if very dense. It also has a passthrough filter to limit processing data within the valid minimum to maximum height bounds. The voxel filter is recommended if it lowers CPU overhead, otherwise, passthrough filter. No filter is also available if you pre-process your data or are not interested in performance optimizations.
103
+
102
104
```
103
105
rgbd_obstacle_layer:
104
106
enabled: true
@@ -130,7 +132,7 @@ rgbd_obstacle_layer:
130
132
observation_persistence: 0.0 #default 0, use all measurements taken during now-value, 0=latest
131
133
inf_is_valid: false #default false, for laser scans
132
134
clear_after_reading: true #default false, clear the buffer after the layer gets readings from it
133
-
voxel_filter: true #default off, apply voxelfilter to sensor, recommend on
135
+
filter: "voxel"#default passthrough, apply "voxel", "passthrough", or no filter to sensor data, recommended to have at one filter on
134
136
voxel_min_points: 0 #default 0, minimum points per voxel for voxel filter
135
137
rgbd1_clear:
136
138
enabled: true #default true, can be toggled on/off with associated service call
0 commit comments