Skip to content

Commit caf716c

Browse files
Isaac ROS 4.0
1 parent 897a105 commit caf716c

25 files changed

+109
-1817
lines changed

SECURITY.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
## Security
2+
3+
NVIDIA is dedicated to the security and trust of our software products and services, including all source code repositories managed through our organization.
4+
5+
If you need to report a security issue, please use the appropriate contact points outlined below. **Please do not report security vulnerabilities through GitHub.**
6+
7+
## Reporting Potential Security Vulnerability in an NVIDIA Product
8+
9+
To report a potential security vulnerability in any NVIDIA product:
10+
- Web: [Security Vulnerability Submission Form](https://www.nvidia.com/object/submit-security-vulnerability.html)
11+
12+
- We encourage you to use the following PGP key for secure email communication: [NVIDIA public PGP Key for communication](https://www.nvidia.com/en-us/security/pgp-key)
13+
- Please include the following information:
14+
- Product/Driver name and version/branch that contains the vulnerability
15+
- Type of vulnerability (code execution, denial of service, buffer overflow, etc.)
16+
- Instructions to reproduce the vulnerability
17+
- Proof-of-concept or exploit code
18+
- Potential impact of the vulnerability, including how an attacker could exploit the vulnerability
19+
20+
While NVIDIA currently does not have a bug bounty program, we do offer acknowledgement when an externally reported security issue is addressed under our coordinated vulnerability disclosure policy. Please visit our [Product Security Incident Response Team (PSIRT)](https://www.nvidia.com/en-us/security/psirt-policies/) policies page for more information.
21+
22+
## NVIDIA Product Security
23+
24+
For all security-related concerns, please visit NVIDIA's Product Security portal at https://www.nvidia.com/en-us/security

isaac_ros_examples/isaac_ros_examples/isaac_ros_launch_fragment_spec.py

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,10 @@ def __init__(self, package, class_name, filename=''):
9595
'isaac_ros_image_resize_rectify_stereo_core.launch.py'),
9696

9797
# Isaac ROS Depth Proc
98+
# Align depth to color
99+
'align_depth_to_color': IsaacROSLaunchFragmentSpec(
100+
'isaac_ros_depth_image_proc', 'IsaacROSAlignDepthToColorLaunchFragment',
101+
'isaac_ros_depth_image_proc_align_depth_to_color_core.launch.py'),
98102
# Convert depth to metric
99103
'convert_metric': IsaacROSLaunchFragmentSpec(
100104
'isaac_ros_depth_image_proc', 'IsaacROSConvertMetricLaunchFragment',
@@ -136,17 +140,13 @@ def __init__(self, package, class_name, filename=''):
136140
'stereo_h264_encoder': IsaacROSLaunchFragmentSpec(
137141
'isaac_ros_h264_encoder', 'IsaacROSStereoH264EncoderLaunchFragment'),
138142

139-
# Isaac ROS Depth Segmentation
140-
'bi3d': IsaacROSLaunchFragmentSpec(
141-
'isaac_ros_bi3d', 'IsaacROSBi3DLaunchFragment'),
142143

143144
# Isaac ROS DNN Stereo Depth
144145
'ess_disparity': IsaacROSLaunchFragmentSpec(
145146
'isaac_ros_ess', 'IsaacROSEssLaunchFragment'),
147+
'foundationstereo': IsaacROSLaunchFragmentSpec(
148+
'isaac_ros_foundationstereo', 'IsaacROSFoundationStereoLaunchFragment'),
146149

147-
# Isaac ROS Freespace Segmentation
148-
'bi3d_freespace': IsaacROSLaunchFragmentSpec(
149-
'isaac_ros_bi3d_freespace', 'IsaacROSBi3DFreespaceLaunchFragment'),
150150

151151
# Isaac ROS Image Pipeline
152152
'resize': IsaacROSLaunchFragmentSpec(
@@ -167,10 +167,14 @@ def __init__(self, package, class_name, filename=''):
167167
'isaac_ros_segformer', 'IsaacROSSegformerLaunchFragment'),
168168
'segment_anything': IsaacROSLaunchFragmentSpec(
169169
'isaac_ros_segment_anything', 'IsaacROSSegmentAnythingLaunchFragment'),
170+
'segment_anything2': IsaacROSLaunchFragmentSpec(
171+
'isaac_ros_segment_anything2', 'IsaacROSSegmentAnything2LaunchFragment'),
170172
'unet': IsaacROSLaunchFragmentSpec(
171173
'isaac_ros_unet', 'IsaacROSUNetLaunchFragment'),
172174

173175
# Isaac ROS Object Detection
176+
'grounding_dino': IsaacROSLaunchFragmentSpec(
177+
'isaac_ros_grounding_dino', 'IsaacROSGroundingDinoLaunchFragment'),
174178
'rtdetr': IsaacROSLaunchFragmentSpec(
175179
'isaac_ros_rtdetr', 'IsaacROSRtDetrLaunchFragment'),
176180
'detectnet': IsaacROSLaunchFragmentSpec(

isaac_ros_examples/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
33
<package format="3">
44
<name>isaac_ros_examples</name>
5-
<version>3.2.5</version>
5+
<version>4.0.0</version>
66
<description>Utilities for launching example graphs of Isaac ROS packages</description>
77

88
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>

isaac_ros_examples/setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@
3838
maintainer_email='[email protected]',
3939
description='Utilities for launching example graphs of Isaac ROS packages',
4040
license='NVIDIA Isaac ROS Software License',
41-
tests_require=['pytest'],
41+
extras_require={
42+
'test': [
43+
'pytest',
44+
],
45+
},
4246
entry_points={
4347
'console_scripts': [
4448
],

0 commit comments

Comments
 (0)