-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pepper_bringup] add perception.launch.xml
- Loading branch information
1 parent
34ba94c
commit bcf0664
Showing
4 changed files
with
85 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,74 @@ | ||
<launch> | ||
<arg name="namespace" /> | ||
|
||
<arg name="respawn" default="false" /> | ||
|
||
<arg name="launch_manager" default="true" /> | ||
<arg name="manager" default="camera_nodelet_manager" /> | ||
<arg name="debug" default="false" /> | ||
<arg name="num_worker_threads" default="4" /> | ||
|
||
<arg name="depth_registration" default="true" /> | ||
<arg name="depth_registered" default="depth_registered" /> | ||
<arg name="hw_registered_processing" default="true" /> | ||
<arg name="sw_registered_processing" default="true" /> | ||
|
||
<!-- if depth_registration is set to false, publish pointcloud without rgb instead --> | ||
<arg name="points_xyz" value="false" if="$(arg depth_registration)" /> | ||
<arg name="points_xyz" value="true" unless="$(arg depth_registration)" /> | ||
|
||
<group ns="$(arg namespace)/camera"> | ||
|
||
<!-- manager --> | ||
<include file="$(find rgbd_launch)/launch/includes/manager.launch.xml"> | ||
<arg name="name" value="$(arg manager)" /> | ||
<arg name="debug" value="$(arg debug)" /> | ||
<arg name="num_worker_threads" value="$(arg num_worker_threads)" /> | ||
</include> | ||
|
||
<!-- front rgb camera --> | ||
<include file="$(find rgbd_launch)/launch/includes/rgb.launch.xml"> | ||
<arg name="rgb" value="front" /> | ||
<arg name="manager" value="$(arg manager)" /> | ||
<arg name="respawn" value="$(arg respawn)" /> | ||
<arg name="debayer_processing" value="false" /> | ||
</include> | ||
|
||
<!-- bottom rgb camera --> | ||
<include file="$(find rgbd_launch)/launch/includes/rgb.launch.xml"> | ||
<arg name="rgb" value="bottom" /> | ||
<arg name="manager" value="$(arg manager)" /> | ||
<arg name="respawn" value="$(arg respawn)" /> | ||
<arg name="debayer_processing" value="false" /> | ||
</include> | ||
|
||
<!-- ir camera --> | ||
<include file="$(find rgbd_launch)/launch/includes/ir.launch.xml"> | ||
<arg name="ir" value="ir" /> | ||
<arg name="manager" value="$(arg manager)" /> | ||
<arg name="respawn" value="$(arg respawn)" /> | ||
</include> | ||
|
||
<!-- depth camera --> | ||
<include file="$(find rgbd_launch)/launch/includes/depth.launch.xml"> | ||
<arg name="depth" value="depth" /> | ||
<arg name="manager" value="$(arg manager)" /> | ||
<arg name="rectify" value="true" /> | ||
<arg name="respawn" value="$(arg respawn)" /> | ||
<arg name="points_xyz" value="$(arg points_xyz)" /> | ||
</include> | ||
|
||
<!-- depth registration --> | ||
<include file="$(find rgbd_launch)/launch/includes/depth_registered.launch.xml" | ||
if="$(arg depth_registration)"> | ||
<arg name="manager" value="$(arg manager)" /> | ||
<arg name="respawn" value="$(arg respawn)" /> | ||
<arg name="rgb" value="front" /> | ||
<arg name="depth" value="depth" /> | ||
<arg name="depth_registered" value="$(arg depth_registered)" /> | ||
<arg name="hw_registered_processing" value="$(arg hw_registered_processing)" /> | ||
<arg name="sw_registered_processing" value="$(arg sw_registered_processing)" /> | ||
</include> | ||
|
||
</group> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters