Skip to content

Commit 4c47edf

Browse files
Merge pull request #47 from NVIDIA-ISAAC-ROS/release-3.1
Isaac ROS 3.1
2 parents ce43e59 + 8414c8a commit 4c47edf

File tree

7 files changed

+63
-5
lines changed

7 files changed

+63
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,4 +97,4 @@ Please visit the [Isaac ROS Documentation](https://nvidia-isaac-ros.github.io/re
9797

9898
## Latest
9999

100-
Update 2024-05-30: Added RT-DETR object detection package
100+
Update 2024-09-26: Update for ZED compatibility

gxf_isaac_detectnet/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SPDX-License-Identifier: Apache-2.0
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>gxf_isaac_detectnet</name>
24-
<version>3.0.1</version>
24+
<version>3.1.0</version>
2525
<description>Detectnet GXF extension.</description>
2626

2727
<maintainer email="[email protected]">Isaac ROS Maintainers</maintainer>
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "peoplenet"
2+
platform: "tensorrt_plan"
3+
max_batch_size: 16
4+
input [
5+
{
6+
name: "input_1"
7+
data_type: TYPE_FP32
8+
format: FORMAT_NCHW
9+
dims: [ 3, 720, 1280 ]
10+
}
11+
]
12+
output [
13+
{
14+
name: "output_bbox/BiasAdd"
15+
data_type: TYPE_FP32
16+
dims: [ 12, 45, 80]
17+
},
18+
{
19+
name: "output_cov/Sigmoid"
20+
data_type: TYPE_FP32
21+
dims: [ 3, 45, 80]
22+
}
23+
]
24+
dynamic_batching { }
25+
version_policy: {
26+
specific {
27+
versions: [ 1 ]
28+
}
29+
}
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: "peoplenet"
2+
platform: "tensorrt_plan"
3+
max_batch_size: 16
4+
input [
5+
{
6+
name: "input_1"
7+
data_type: TYPE_FP32
8+
format: FORMAT_NCHW
9+
dims: [ 3, 1200, 1920 ]
10+
}
11+
]
12+
output [
13+
{
14+
name: "output_bbox/BiasAdd"
15+
data_type: TYPE_FP32
16+
dims: [ 12, 75, 120]
17+
},
18+
{
19+
name: "output_cov/Sigmoid"
20+
data_type: TYPE_FP32
21+
dims: [ 3, 75, 120]
22+
}
23+
]
24+
dynamic_batching { }
25+
version_policy: {
26+
specific {
27+
versions: [ 1 ]
28+
}
29+
}

isaac_ros_detectnet/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SPDX-License-Identifier: Apache-2.0
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>isaac_ros_detectnet</name>
24-
<version>3.0.1</version>
24+
<version>3.1.0</version>
2525
<description>DetectNet model processing</description>
2626

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

isaac_ros_rtdetr/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ SPDX-License-Identifier: Apache-2.0
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>isaac_ros_rtdetr</name>
24-
<version>3.0.1</version>
24+
<version>3.1.0</version>
2525
<description>RT-DETR model processing</description>
2626

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

isaac_ros_yolov8/package.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<?xml-model href="http://download.ros.org/schema/package_format3.xsd" schematypens="http://www.w3.org/2001/XMLSchema"?>
2222
<package format="3">
2323
<name>isaac_ros_yolov8</name>
24-
<version>3.0.1</version>
24+
<version>3.1.0</version>
2525
<description>Isaac ROS YOLOv8 decoding</description>
2626

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

0 commit comments

Comments
 (0)