You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using RTAB to map an environment in Isaac Sim using a stereo ZED X camera and ROS2. I am getting what I think is a good number of inliers with stereo odom, as shown below, yet my stereo map is largely made up of unknowns. I have included my rtabmap launch file below - please let me know if you have any advice! My colleague suggested that it could be that the environment is too plain, especially with the white floor and walls, but I changed these colours and am still seeing a similar result. Let me know if I can provide any other information to make this issue more clear. Thank you in advance!
from launch import LaunchDescription
from launch_ros.actions import Node
from launch.substitutions import LaunchConfiguration
from launch.actions import DeclareLaunchArgument
Something looks off in the image you shared, the stereo images don't look correctly stereo rectified as we can see vertical disparity. That would affect the quality of the point cloud a lot, and also would cause very bad odometry.
Beside that, the floor is indeed textureless, so no depth would be computed on it. If you can see only obstacles and want more empty cells in the map, you can enable ray tracing:
Hello!
I am using RTAB to map an environment in Isaac Sim using a stereo ZED X camera and ROS2. I am getting what I think is a good number of inliers with stereo odom, as shown below, yet my stereo map is largely made up of unknowns. I have included my rtabmap launch file below - please let me know if you have any advice! My colleague suggested that it could be that the environment is too plain, especially with the white floor and walls, but I changed these colours and am still seeing a similar result. Let me know if I can provide any other information to make this issue more clear. Thank you in advance!
from launch import LaunchDescription
from launch_ros.actions import Node
from launch.substitutions import LaunchConfiguration
from launch.actions import DeclareLaunchArgument
def generate_launch_description():
use_sim_time = LaunchConfiguration('use_sim_time')
rtabmap_args = LaunchConfiguration('rtabmap_args')
database_path = LaunchConfiguration('database_path')
localization = LaunchConfiguration('localization')
The text was updated successfully, but these errors were encountered: