Skip to content

Commit

Permalink
Merge pull request #190 from NVIDIA-ISAAC-ROS/release-3.2
Browse files Browse the repository at this point in the history
Reduce image buffer size
  • Loading branch information
jaiveersinghNV authored Jan 31, 2025
2 parents b33821f + 5c14080 commit ac2eedd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Jetson](https://gateway.on24.com/wcc/experience/elitenvidiabrill/1407606/3998202

## Overview

[Isaac ROS Visual SLAM](https://github.com/NVIDIA-ISAAC-ROS/isaac_ros_visual_slam)
Isaac ROS Visual SLAM
provides a high-performance, best-in-class ROS 2 package
for VSLAM (visual simultaneous localization and mapping). This package
uses one or more stereo cameras and optionally an IMU to estimate
Expand Down
2 changes: 1 addition & 1 deletion isaac_ros_visual_slam/src/visual_slam_node.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ VisualSlamNode::VisualSlamNode(rclcpp::NodeOptions options)
std::vector<std::string>{})),
imu_frame_(declare_parameter<std::string>("imu_frame", "")),
// Message Parameters:
image_buffer_size_(declare_parameter<int>("image_buffer_size", 100)),
image_buffer_size_(declare_parameter<int>("image_buffer_size", 10)),
imu_buffer_size_(declare_parameter<int>("imu_buffer_size", 50)),
image_qos_(::isaac_ros::common::AddQosParameter(*this, "SENSOR_DATA", "image_qos")),
imu_qos_(::isaac_ros::common::AddQosParameter(*this, "SENSOR_DATA", "imu_qos")),
Expand Down

0 comments on commit ac2eedd

Please sign in to comment.