-
Notifications
You must be signed in to change notification settings - Fork 392
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 #727 from stereolabs/dev_noetic
Dev noetic
- Loading branch information
Showing
11 changed files
with
177 additions
and
41 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
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,55 @@ | ||
<?xml version="1.0"?> | ||
<!-- | ||
Copyright (c) 2020, STEREOLABS. | ||
All rights reserved. | ||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
--> | ||
<launch> | ||
<arg name="svo_file" default="" /> <!-- <arg name="svo_file" default="path/to/svo/file.svo"> --> | ||
<arg name="stream" default="" /> <!-- <arg name="stream" default="<ip_address>:<port>"> --> | ||
|
||
<arg name="node_name" default="zed_node" /> | ||
<arg name="camera_model" default="zed2i" /> | ||
<arg name="publish_urdf" default="true" /> | ||
|
||
<arg name="camera_name" default="zed2i" /> | ||
|
||
<arg name="base_frame" default="base_link" /> | ||
|
||
<arg name="cam_pos_x" default="0.0" /> <!-- Position respect to base frame (i.e. "base_link) --> | ||
<arg name="cam_pos_y" default="0.0" /> <!-- Position respect to base frame (i.e. "base_link) --> | ||
<arg name="cam_pos_z" default="0.0" /> <!-- Position respect to base frame (i.e. "base_link) --> | ||
<arg name="cam_roll" default="0.0" /> <!-- Orientation respect to base frame (i.e. "base_link) --> | ||
<arg name="cam_pitch" default="0.0" /> <!-- Orientation respect to base frame (i.e. "base_link) --> | ||
<arg name="cam_yaw" default="0.0" /> <!-- Orientation respect to base frame (i.e. "base_link) --> | ||
|
||
<group ns="$(arg camera_name)"> | ||
<include file="$(find zed_wrapper)/launch/include/zed_camera.launch.xml"> | ||
<arg name="camera_name" value="$(arg camera_name)" /> | ||
<arg name="svo_file" value="$(arg svo_file)" /> | ||
<arg name="stream" value="$(arg stream)" /> | ||
<arg name="node_name" value="$(arg node_name)" /> | ||
<arg name="camera_model" value="$(arg camera_model)" /> | ||
<arg name="base_frame" value="$(arg base_frame)" /> | ||
<arg name="publish_urdf" value="$(arg publish_urdf)" /> | ||
<arg name="cam_pos_x" value="$(arg cam_pos_x)" /> | ||
<arg name="cam_pos_y" value="$(arg cam_pos_y)" /> | ||
<arg name="cam_pos_z" value="$(arg cam_pos_z)" /> | ||
<arg name="cam_roll" value="$(arg cam_roll)" /> | ||
<arg name="cam_pitch" value="$(arg cam_pitch)" /> | ||
<arg name="cam_yaw" value="$(arg cam_yaw)" /> | ||
</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
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
Oops, something went wrong.