-
Notifications
You must be signed in to change notification settings - Fork 135
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 #148 from NVIDIA-ISAAC-ROS/release-3.1
Isaac ROS 3.1
- Loading branch information
Showing
17 changed files
with
82 additions
and
43 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,41 @@ | ||
# Copyright (c) 2023, NVIDIA CORPORATION. All rights reserved. | ||
# | ||
# NVIDIA CORPORATION and its licensors retain all intellectual property | ||
# and proprietary rights in and to this software, related documentation | ||
# and any modifications thereto. Any use, reproduction, disclosure or | ||
# distribution of this software and related documentation without an express | ||
# license agreement from NVIDIA CORPORATION is strictly prohibited. | ||
|
||
ARG BASE_IMAGE | ||
FROM ${BASE_IMAGE} | ||
|
||
ARG ZED_SDK_MAJOR=4 | ||
ARG ZED_SDK_MINOR=0 | ||
|
||
# zed-ros2-wrapper dependencies | ||
RUN --mount=type=cache,target=/var/cache/apt \ | ||
apt-get update && apt-get install -y \ | ||
libgeographic-dev \ | ||
ros-humble-geographic-info \ | ||
ros-humble-nmea-msgs \ | ||
ros-humble-robot-localization \ | ||
ros-humble-xacro | ||
|
||
# The zed installation script expects to be run as non-root user and needs the USER ENV variable to be set | ||
ENV USER=${USERNAME} | ||
USER ${USERNAME} | ||
|
||
COPY scripts/install-zed-x86_64.sh /opt/zed/install-zed-x86_64.sh | ||
COPY scripts/install-zed-aarch64.sh /opt/zed/install-zed-aarch64.sh | ||
|
||
RUN --mount=type=cache,target=/var/cache/apt \ | ||
if [ "$(uname -m)" = "x86_64" ]; then \ | ||
sudo chmod +x /opt/zed/install-zed-x86_64.sh; \ | ||
/opt/zed/install-zed-x86_64.sh; \ | ||
else \ | ||
sudo chmod +x /opt/zed/install-zed-aarch64.sh; \ | ||
/opt/zed/install-zed-aarch64.sh; \ | ||
fi | ||
|
||
# Revert to root user | ||
USER root |
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_apriltag_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Interfaces for performing Isaac ROS AprilTag detection</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_bi3d_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Interfaces for Isaac ROS Bi3D</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_common</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Utilities for performing common functions in Isaac ROS packages</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_launch_utils</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Helper functions to simplify ROS2 launch files.</description> | ||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
<license>Apache-2.0</license> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_nitros_bridge_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Interfaces for Isaac ROS NITROS Bridge Msgs</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_nova_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Interfaces for Isaac ROS Nova</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_pointcloud_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Pointcloud interfaces for Isaac ROS NITROS</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_tensor_list_interfaces</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Interfaces for Isaac ROS tensor list</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|
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 |
---|---|---|
|
@@ -13,7 +13,7 @@ license agreement from NVIDIA CORPORATION is strictly prohibited. | |
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?> | ||
<package format="3"> | ||
<name>isaac_ros_test</name> | ||
<version>3.0.1</version> | ||
<version>3.1.0</version> | ||
<description>Isaac ROS testing utilities</description> | ||
|
||
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer> | ||
|