First time here? Check out the FAQ!

Ask Your Question
0

How to obtain projection matrix?

asked May 17 '13

Victor1234 gravatar image

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

Preview: (hide)

1 answer

Sort by » oldest newest most voted
0

answered May 17 '13

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.

Preview: (hide)

Question Tools

Stats

Asked: May 17 '13

Seen: 4,337 times

Last updated: May 17 '13