There are many questions that explain how to find the projection matrix but they don't apply to my situation. The Matlab function cameraMatrix(cameraParams,rotMatrix,tranVector)
can easily find the projection matrix.
I obtained my cameraParams variable by using the camera calibrator app in Matlab by providing checkerboard images in the input. The problem is that in my cameraParams
variable, there are 10 rotation matrices and 10 translation vectors for some reason. The app always returns 10 rotation and translation vectors no matter what. The function cameraMatrix()
can only accept a single rotation matrix and translation vector as inputs.
Why are there multiple rotation matrices and translation vectors and how do I find the projection matrix?