Ask Your Question
0

Triangulation origin with stereo system

asked 2016-03-15 05:41:44 -0600

Bilou563 gravatar image

updated 2016-03-15 16:47:36 -0600

I m using a stereo system and so i m trying to get world coordinates of some points. I can do it with specific calibration for each camera and then i calculate rotation matrix and translation vector. And finally i triangulate but i m not sure of the origin of the world coordinates.

As you can see on my figure, values correspond to depth value but they shoud be close of 400 as it is flat. So i suppose that the origin is the left camera that s why it variates...

image description

A piece of my code with my projective arrays and triangulate function :

#C1 and C2 are the cameras matrix (left and rig)
#R_0 and T_0 are the transformation between cameras
#Coord1 and Coord2 are the correspondant coordinates of left and right respectively
P1 = np.dot(C1,np.hstack((np.identity(3),np.zeros((3,1))))) 

P2 =np.dot(C2,np.hstack(((R_0),T_0)))

for i in range(Coord1.shape[0])
    z = cv2.triangulatePoints(P1, P2, Coord1[i,],Coord2[i,])

My cameras present an angle, the Z axis direction (direction of the depth) is not normal to my surface. And i want the depth from the baseline direction. So i have to rotate my points?

image description

Thanks for help ;)

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2016-03-16 08:52:44 -0600

Oguzhan gravatar image

The origin is the optical center of the Camera 1. See http://www.mathworks.com/help/vision/...

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2016-03-15 05:41:44 -0600

Seen: 794 times

Last updated: Mar 16 '16