3
votes

If I have a 3x4 camera projection matrix, can I compute all or just some of the individual intrinsic and extrinsic camera parameters, i.e., focal length, principal point coordinates, rotation angles (roll, yaw and tilt), and translation vector? If yes, what are the formula?

Is there any tool in OpenCV/OpenGL/MATLAB that could help me do so?

1

1 Answers

2
votes

Yes. You proceed by decomposing your projection matrix into the product of an upper triangular one and an orthogonal one. You can google search for RQ-decomposition for details. A nice summary is here.