-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbox_filter.launch
More file actions
24 lines (22 loc) · 840 Bytes
/
Copy pathbox_filter.launch
File metadata and controls
24 lines (22 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<launch>
<arg name="vehicle" default="X1" />
<!-- PCL Manager -->
<node pkg="nodelet" type="nodelet" name="cropbox_filter_pcl_manager" args="manager" output="screen"/>
<!-- A CropBox filter to avoid self-detection -->
<node pkg="nodelet" type="nodelet" name="self_removal" args="load pcl/CropBox cropbox_filter_pcl_manager" output="screen">
<remap from="~input" to="points" />
<remap from="~output" to="octomap_in" />
<param name="input_frame" value="$(arg vehicle)/base_link/front_laser" />
<param name="output_frame" value="$(arg vehicle)/base_link/front_laser" />
<rosparam>
# true: no points in the box, false: no points outside the box
negative: true
min_x: -1.0
max_x: 0.1
min_y: -0.5
max_y: 0.5
min_z: -0.5
max_z: 0.25
</rosparam>
</node>
</launch>