-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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 #143 from mdhorn/rostest-fix-zr300
Fix ROS Camera Tests
- Loading branch information
Showing
3 changed files
with
17 additions
and
11 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 |
---|---|---|
@@ -1,14 +1,18 @@ | ||
<launch> | ||
<arg name="camera" value="camera" /> | ||
<arg name="camera_type" default="ZR300" /> | ||
<arg name="camera" value="camera" /> | ||
<arg name="camera_type" default="ZR300" /> | ||
<arg name="enable_fisheye" default="true" /> | ||
<arg name="enable_imu" default="true" /> | ||
|
||
<!-- Start camera --> | ||
<include file="$(find realsense_camera)/launch/zr300_nodelet_default.launch"> | ||
<arg name="camera" value="$(arg camera)" /> | ||
<arg name="camera_type" value="$(arg camera_type)" /> | ||
<arg name="camera" value="$(arg camera)" /> | ||
<arg name="camera_type" value="$(arg camera_type)" /> | ||
</include> | ||
|
||
<!-- Start test --> | ||
<test pkg="realsense_camera" type="tests_camera_core" test-name="realsense_camera_test" | ||
args="camera_type $(arg camera_type)" /> | ||
args="camera_type $(arg camera_type) | ||
enable_fisheye $(arg enable_fisheye) | ||
enable_imu $(arg enable_imu)" /> | ||
</launch> |