Ask Your Question
0

How to obtain projection matrix?

asked 2013-05-17 07:16:02 -0600

Victor1234 gravatar image

I have translation, rotation and camera matrices for two camera. How I can obtain two projection matrices for them?

edit retag flag offensive close merge delete

1 answer

Sort by ยป oldest newest most voted
0

answered 2013-05-17 10:49:08 -0600

RaulPL gravatar image

Hi, the projection matrix is defined as P = KT (matrix multiplication)

where K => intrinsic parameters (camera parameters obtained by calibration)

     [fx, 0, cx;
 K =  0, fy, cy;
      0,  0,  1]

and T => extrinsic parameters (rotation matrix and translation vector [R|t] )

     [r11, r12, r13, t1;
 T =  r21, r22, r23, t2;
      r31, r32, r33, t3]

You can see this in the docs page.

edit flag offensive delete link more

Question Tools

Stats

Asked: 2013-05-17 07:16:02 -0600

Seen: 3,982 times

Last updated: May 17 '13