Skip to content

Commit 1769d58

Browse files
authored
Merge pull request #2 from NVIDIA-ISAAC-ROS/release-dp-1.0.1
Isaac ROS 0.10.1 (DP)
2 parents 61a375b + fe9e14c commit 1769d58

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

isaac_ros_ess/config/ess_inference.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ components:
1212
- name: left_image_receiver
1313
type: nvidia::gxf::DoubleBufferReceiver
1414
parameters:
15-
capacity: 1
15+
capacity: 12
1616
policy: 0
1717
- type: nvidia::gxf::MessageAvailableSchedulingTerm
1818
parameters:
@@ -21,7 +21,7 @@ components:
2121
- name: right_image_receiver
2222
type: nvidia::gxf::DoubleBufferReceiver
2323
parameters:
24-
capacity: 1
24+
capacity: 12
2525
policy: 0
2626
- type: nvidia::gxf::MessageAvailableSchedulingTerm
2727
parameters:
@@ -35,7 +35,7 @@ components:
3535
- name: left_cam_receiver
3636
type: nvidia::gxf::DoubleBufferReceiver
3737
parameters:
38-
capacity: 1
38+
capacity: 12
3939
policy: 0
4040
- type: nvidia::gxf::MessageAvailableSchedulingTerm
4141
parameters:
@@ -44,7 +44,7 @@ components:
4444
- name: right_cam_receiver
4545
type: nvidia::gxf::DoubleBufferReceiver
4646
parameters:
47-
capacity: 1
47+
capacity: 12
4848
policy: 0
4949
- type: nvidia::gxf::MessageAvailableSchedulingTerm
5050
parameters:
@@ -104,7 +104,7 @@ components:
104104
- name: data_receiver_left
105105
type: nvidia::gxf::DoubleBufferReceiver
106106
parameters:
107-
capacity: 12
107+
capacity: 1
108108
policy: 0
109109
- type: nvidia::gxf::MessageAvailableSchedulingTerm
110110
parameters:
@@ -113,7 +113,7 @@ components:
113113
- name: data_receiver_right
114114
type: nvidia::gxf::DoubleBufferReceiver
115115
parameters:
116-
capacity: 12
116+
capacity: 1
117117
policy: 0
118118
- type: nvidia::gxf::MessageAvailableSchedulingTerm
119119
parameters:

isaac_ros_ess/src/ess_disparity_node.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,23 +69,23 @@ const nitros::NitrosPublisherSubscriberConfigMap CONFIG_MAP = {
6969
{INPUT_LEFT_COMPONENT_KEY,
7070
{
7171
.type = nitros::NitrosPublisherSubscriberType::NEGOTIATED,
72-
.qos = rclcpp::QoS(1),
72+
.qos = rclcpp::QoS(10),
7373
.compatible_data_format = INPUT_DEFAULT_TENSOR_FORMAT,
7474
.topic_name = INPUT_LEFT_TOPIC_NAME,
7575
}
7676
},
7777
{INPUT_RIGHT_COMPONENT_KEY,
7878
{
7979
.type = nitros::NitrosPublisherSubscriberType::NEGOTIATED,
80-
.qos = rclcpp::QoS(1),
80+
.qos = rclcpp::QoS(10),
8181
.compatible_data_format = INPUT_DEFAULT_TENSOR_FORMAT,
8282
.topic_name = INPUT_RIGHT_TOPIC_NAME,
8383
}
8484
},
8585
{OUTPUT_COMPONENT_KEY,
8686
{
8787
.type = nitros::NitrosPublisherSubscriberType::NEGOTIATED,
88-
.qos = rclcpp::QoS(1),
88+
.qos = rclcpp::QoS(10),
8989
.compatible_data_format = OUTPUT_DEFAULT_TENSOR_FORMAT,
9090
.topic_name = OUTPUT_TOPIC_NAME,
9191
.frame_id_source_key = INPUT_LEFT_COMPONENT_KEY,
@@ -94,15 +94,15 @@ const nitros::NitrosPublisherSubscriberConfigMap CONFIG_MAP = {
9494
{INPUT_LEFT_CAM_COMPONENT_KEY,
9595
{
9696
.type = nitros::NitrosPublisherSubscriberType::NEGOTIATED,
97-
.qos = rclcpp::QoS(1),
97+
.qos = rclcpp::QoS(10),
9898
.compatible_data_format = INPUT_CAMERA_INFO_FORMAT,
9999
.topic_name = INPUT_LEFT_CAMERA_TOPIC_NAME,
100100
}
101101
},
102102
{INPUT_RIGHT_CAM_COMPONENT_KEY,
103103
{
104104
.type = nitros::NitrosPublisherSubscriberType::NEGOTIATED,
105-
.qos = rclcpp::QoS(1),
105+
.qos = rclcpp::QoS(10),
106106
.compatible_data_format = INPUT_CAMERA_INFO_FORMAT,
107107
.topic_name = INPUT_RIGHT_CAMERA_TOPIC_NAME,
108108
}

0 commit comments

Comments
 (0)