Skip to content

Commit

Permalink
disabled unregistered depth and disparity processing when depth_regis…
Browse files Browse the repository at this point in the history
…trion is set to true
  • Loading branch information
piyushk committed Jul 31, 2013
1 parent 1dad396 commit 06ec218
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions launch/includes/processing.launch
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,14 @@
</include>

<!-- Unregistered depth processing -->
<include if="$(arg depth_processing)"
file="$(find rgbd_launch)/launch/includes/depth.launch">
<arg name="manager" value="$(arg manager)" />
<arg name="respawn" value="$(arg respawn)" />
<arg name="depth" value="$(arg depth)" />
</include>
<group unless="$(arg depth_registration)">
<include if="$(arg depth_processing)"
file="$(find rgbd_launch)/launch/includes/depth.launch">
<arg name="manager" value="$(arg manager)" />
<arg name="respawn" value="$(arg respawn)" />
<arg name="depth" value="$(arg depth)" />
</include>
</group>

<!-- Depth-to-RGB registration and processing -->
<include if="$(arg depth_registered_processing)"
Expand All @@ -63,13 +65,15 @@
</include>

<!-- Unregistered disparity image -->
<include if="$(arg disparity_processing)"
file="$(find rgbd_launch)/launch/includes/disparity.launch">
<arg name="manager" value="$(arg manager)" />
<arg name="depth" value="$(arg depth)" />
<arg name="projector" value="$(arg projector)" />
<arg name="respawn" value="$(arg respawn)" />
</include>
<group unless="$(arg depth_registration)">
<include if="$(arg disparity_processing)"
file="$(find rgbd_launch)/launch/includes/disparity.launch">
<arg name="manager" value="$(arg manager)" />
<arg name="depth" value="$(arg depth)" />
<arg name="projector" value="$(arg projector)" />
<arg name="respawn" value="$(arg respawn)" />
</include>
</group>

<!-- Registered disparity image -->
<include if="$(arg disparity_registered_processing)"
Expand Down

0 comments on commit 06ec218

Please sign in to comment.