Skip to content

Commit

Permalink
preparing the new PCL-based package
Browse files Browse the repository at this point in the history
  • Loading branch information
Radu Bogdan Rusu committed Nov 24, 2010
1 parent 1a77541 commit 6759144
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 0 deletions.
14 changes: 14 additions & 0 deletions kinect_pcl/launch/passthrough.launch
@@ -0,0 +1,14 @@
<launch>
<!-- Run a passthrough filter to clean NaNs -->
<node pkg="nodelet" type="nodelet" name="passthrough" args="load pcl/PassThrough kinect_manager" output="screen">
<remap from="~input" to="/kinect/points2" />
<remap from="~output" to="/kinect_pcl/points2_pass" />
<rosparam>
filter_field_name: z
filter_limit_min: 0.01
filter_limit_max: 5.0
filter_limit_negative: False
</rosparam>
</node>
</launch>

16 changes: 16 additions & 0 deletions kinect_pcl/launch/voxelgrid.launch
@@ -0,0 +1,16 @@
<launch>
<!-- Run a VoxelGrid filter to clean NaNs and downsample the data -->
<node pkg="nodelet" type="nodelet" name="voxel_grid" args="load pcl/VoxelGrid kinect_manager" output="screen">
<remap from="~input" to="/kinect/points2" />
<remap from="~output" to="/kinect_pcl/points2_grid" />
<rosparam>
filter_field_name: z
filter_limit_min: 0.01
filter_limit_max: 1.5
filter_limit_negative: False
leaf_size: 0.01
</rosparam>
</node>

</launch>

0 comments on commit 6759144

Please sign in to comment.