Hi.
I’m trying to get a deep understanding of OpenCV intrinsic camera model and was reading the OpenCV docs(OpenCV: Camera Calibration and 3D Reconstruction) and the source codes. And I came into a question of why the projection matrix in the sensor tilted model, which is given by
[[R33, 0, -R13],
[0, R33, -R23],
[0, 0, 1]]
, exists. Here R13-R33 are the column vector of the rotation matrix in tilted sensor model.
I understand the rotation matrix which accounts for the sensor tilt. But I don’t understand the meaning of this projection matrix because the “actual” projection by the camera matrix follows this “projection”.
I read the following reference paper written in the OpenCV document but the paper doesn’t give the detailed description of the projection matrix.
H. Louhichi, T. Fournel, J. M. Lavest, and H. Ben Aissia. Self-calibration of scheimpflug cameras: an easy protocol. Meas. Sci. Technol. , 18(8):2616–2622, 2007.
Does anyone know where this projection equation came from? And why you need this?
Thanks.