-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Align Depth ROS Topic #31
Comments
I too am interested in this question. If the align_depth topic is not available, do you have any suggestions for aligning the RGB to Depth image ourselves? Thank you! |
Hi again, I'm been searching how to use
I hope this answer would help other users of this package in the future too! |
If you (like me) are thinking: "the plugin publishes an RGB pointcloud, so surely it aligns depth and color internally..." This plugin is based on the Kinect ROS Gazebo plugin, and inherits its code for publishing the point cloud, which as far as I can tell, does not map color over correctly. It acts as though the color data is in depth optical frame and maps it straight on top, ignoring the fact that these cameras are offset. It does not reproject the depth data. I couldn't find anyone directly reporting this issue, but this request was close: ros-simulation/gazebo_ros_pkgs#415 To get both an
The plugin's incorrectly colored point cloud (note the soup can texture mapping onto the background): And using the depth_image_proc to produce the correct registered depth and pointcloud: Not point-for-point comparable because the can position is different, but you get the idea. |
Disable realsense gazebo plugin pointcloud simulation The plugin doesn't actually register the depth data to the RGB frame, which causes the color information to misalign with depth boundaries, especially when the object is close to the camera depth_image_proc also produces the intermediate "aligned_depth_to_color" topics like the real camera now See pal-robotics/realsense_gazebo_plugin#31
Hi everyone!
I'm wondering if it would be possible to use
align_depth
topic from original ROS realsense drivers with this package. I need it to use the aligned image of the color camera with the depth picture in Gazebo.Thank in advance for any help!
The text was updated successfully, but these errors were encountered: