Ask Your Question
5

From 3d point cloud to disparity map

asked 2012-11-20 12:14:13 -0600

AgentCain gravatar image

Using a stereo calibrated rig of cameras, Ive obtained a disparity map. Using the reprojectImageTo3D() function, I have the 3d point cloud. I want to do some filtering and segmentation on the point cloud and after that re-render it to a disparity image.

Is there an elegant way to do this? I know about projectPoints() and I found this rendering example http://opencv.jp/opencv2-x-samples/point-cloud-rendering but it offers a free way of viewing the point cloud. I would like to simulate it so the output I get is actually the same as the disparity map.

edit retag flag offensive close merge delete

3 answers

Sort by ยป oldest newest most voted
-1

answered 2013-05-15 08:38:57 -0600

yamanneameh gravatar image

updated 2013-05-15 08:39:35 -0600

Hello,

I need to know if you got your coordinate system and translate the output of ReprojectImageTo3D function as I am working in the same topic, I have like this result

X coordinate values always between 350 - 450 Y coordinate values always between -80 to -30 z coordinates values always between 230 - 280 and sometimes 10000 when so far

Thank you for your help

edit flag offensive delete link more
4

answered 2012-11-22 00:24:11 -0600

updated 2012-11-22 00:24:59 -0600

Hi AgentCain,

I don't know if there is a function that implements this for you, but going back from 3D PointCloud to disparity is relatively easy knowing the reprojection matrix Q (one of the arguments to the function reprojectImageTo3D).

The matrix Q has the following structure:

Q =| 1 0 0 -Cx |
   | 0 1 0 -Cy |
   | 0 0 0  f  |
   | 0 0 a  b  |

So assuming that your 3D point has the coordinates (X', Y', Z'), the disparity (d) and its position on the disparity image (Ix and Iy) can be calculated as follow:

d = (f - Z' * b ) / ( Z' * a)

Ix = X' * ( d * a + b ) + Cx

Iy = Y' * ( d * a + b ) + Cy

I attach a picture of the math, just in case you want to know the details. I hope this helps.

edit flag offensive delete link more

Comments

This really helps, thank you very much! Do you also know where is the center of the coordinate system?I think its the dead center of the reprojectImageTo3D() output

AgentCain gravatar imageAgentCain ( 2012-11-22 04:00:07 -0600 )edit

If I am not mistaken, the center of the coordinate system is located at the left camera's center of projection with the X pointing to the right, Y pointing down and Z (depth) pointing outside the camera.

Martin Peris gravatar imageMartin Peris ( 2012-11-22 04:29:31 -0600 )edit
1

answered 2012-11-20 17:32:25 -0600

Victor1234 gravatar image

updated 2012-11-20 17:33:33 -0600

I think you can calculate distance between point cloud and it projection to plane, multiply by proper factor and obtain your disparity point.

edit flag offensive delete link more

Comments

the thing is, I know that the output of the reprojectImageTo3D() function is of the same size as the disparity image. So every pixel of the output has the x,y,z values of the corresponding pixel in the disparity image. But how should I calculate the distance of that pixel relatively to the camera so I'll have the disparity. I dont know how the x,y,z axes are placed or where is the center of my xyz system relatively to the camera

AgentCain gravatar imageAgentCain ( 2012-11-21 11:16:17 -0600 )edit

Question Tools

2 followers

Stats

Asked: 2012-11-20 12:14:13 -0600

Seen: 15,713 times

Last updated: May 15 '13