forked from jsk-ros-pkg/jsk_demos
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request jsk-ros-pkg#1201 from orikuma/add-viewer-option-to…
…-conservative-detections [drc_task_common] Add VIEWER options to toggle using rviz or not. Def…
- Loading branch information
Showing
3 changed files
with
29 additions
and
17 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
21 changes: 21 additions & 0 deletions
21
jsk_2015_06_hrp_drc/drc_task_common/launch/conservative_door_viewer.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<launch> | ||
<arg name="GLC_RECORD" default="false" /> | ||
<arg if="$(arg GLC_RECORD)" | ||
name="glc_prefix" value="glc-capture -i --disable-audio" /> | ||
<arg unless="$(arg GLC_RECORD)" | ||
name="glc_prefix" value="" /> | ||
<group ns="door_detection"> | ||
<node pkg="rviz" type="rviz" name="rviz_input" | ||
launch-prefix="$(arg glc_prefix)" | ||
args="-d $(find drc_task_common)/config/door/input.rviz"/> | ||
<node pkg="rviz" type="rviz" name="rviz_recog" if="false" | ||
launch-prefix="$(arg glc_prefix)" | ||
args="-d $(find drc_task_common)/config/door/recog.rviz"/> | ||
<node pkg="rviz" type="rviz" name="rviz_result" | ||
launch-prefix="$(arg glc_prefix)" | ||
args="-d $(find drc_task_common)/config/door/result.rviz"/> | ||
<node pkg="rviz" type="rviz" name="rviz_downsample" if="false" | ||
launch-prefix="$(arg glc_prefix)" | ||
args="-d $(find drc_task_common)/config/door/downsample.rviz"/> | ||
</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