ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

Getting depth data from (x,y) position of image using Realsense RGB-D Camera

asked 2018-03-21 09:18:02 -0500

mattso gravatar image

Hi there,

I'm currently working with a Realsense RGB-D camera on ROS.

I've noted that latest builds of intel-ros' realsense has fixed the alignment issue and is able to publish aligned depth frames to colour/infra-red.

However, may I know how I can then use just the (x,y) position of the image stream to get the depth data at that particular pixel?

Thank you.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2018-05-23 15:23:35 -0500

dljubic gravatar image

Hello mattso,

I am not sure if I understood the question entirely, but I will try to give you the best possible answer.

I am guessing that you are using registered depth images which means that both depth and color images are in the same coordinate system. This is important because, in that case, you can match the pixels between color and depth images - meaning, a pixel at (x1,y1) in color image has a depth encoded at pixel (x1,y1) in depth image.

That is true for every pixel in the image. However, you need to have in mind that depth sensors are not perfect and not all pixels will show the real depth. Some will just have noise added and others will end up as NaNs or zeros because the sensor was not able to determine the depth (or it was not certain enough - depends on the RealSense presets you are using).

One more thing to pay attention to is the depth image encoding. You need to check how are the depth values encoded - in millimeters or in meters. The easiest way to do it is by checking the value of the encoding field in your sensor_msgs::Image (Image message). It can be either float(in m) or 16-bit unsigned integer (in mm). You can read more about it here.

Moreover, if you are interested in creating a point cloud based on the input depth image check out the depth_image_proc package - especially this part.

If you have any further questions, feel free to ask.

edit flag offensive delete link more

Comments

@dljubic I have further questions. as explained by you, we will work with two different topics /camera/color/image_raw and /camera/aligned_depth_to_color/image_raw in two different callback.as in first callback will find(x,y), but how to integrate second callback into first one(as both are two different topics from camera) so we can get depth d at that particular (x,y)?

nd gravatar image nd  ( 2019-07-21 06:00:43 -0500 )edit

Actually, you would have one callback where you would synchronize both color and depth image topics. You can read more about it here. By using the synchronized callback, you ensure that the color image has a corresponding depth image.

Furthermore, if you are interested in a way to extract the depth for a particular pixel in a color image, it is already implemented in depth_image_proc. Take a look at the convert function here.

dljubic gravatar image dljubic  ( 2019-07-21 07:50:00 -0500 )edit

@mattso Hi I'm also experiencing the same problem, have you solved this?

abc71485 gravatar image abc71485  ( 2021-09-02 09:20:24 -0500 )edit

Question Tools

2 followers

Stats

Asked: 2018-03-21 09:18:02 -0500

Seen: 3,949 times

Last updated: May 23 '18