Skip to content

Commit ac2eedd

Browse files
Merge pull request #190 from NVIDIA-ISAAC-ROS/release-3.2
Reduce image buffer size
2 parents b33821f + 5c14080 commit ac2eedd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Jetson](https://gateway.on24.com/wcc/experience/elitenvidiabrill/1407606/3998202
1717

1818
## Overview
1919

20-
[Isaac ROS Visual SLAM](https://github.com/NVIDIA-ISAAC-ROS/isaac_ros_visual_slam)
20+
Isaac ROS Visual SLAM
2121
provides a high-performance, best-in-class ROS 2 package
2222
for VSLAM (visual simultaneous localization and mapping). This package
2323
uses one or more stereo cameras and optionally an IMU to estimate

isaac_ros_visual_slam/src/visual_slam_node.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ VisualSlamNode::VisualSlamNode(rclcpp::NodeOptions options)
8888
std::vector<std::string>{})),
8989
imu_frame_(declare_parameter<std::string>("imu_frame", "")),
9090
// Message Parameters:
91-
image_buffer_size_(declare_parameter<int>("image_buffer_size", 100)),
91+
image_buffer_size_(declare_parameter<int>("image_buffer_size", 10)),
9292
imu_buffer_size_(declare_parameter<int>("imu_buffer_size", 50)),
9393
image_qos_(::isaac_ros::common::AddQosParameter(*this, "SENSOR_DATA", "image_qos")),
9494
imu_qos_(::isaac_ros::common::AddQosParameter(*this, "SENSOR_DATA", "imu_qos")),

0 commit comments

Comments
 (0)