OpenCV Decompose projection matrix outputs

asked 2020-07-02 12:56:55 -0600

Sara Ahmed gravatar image

updated 2020-07-03 14:33:16 -0600

0

I got confused with the outputs of opencv decomposeProjectionMatrix function.

I have the projection matrix and the camera matrix "K" and I want to get the translation vector "t"and the Rotation matrix "R" from the projection matrix

As I know the projection matrix of dimension 34 = K[R|t] in which "t" is a 31 vector

cv2.decomposeProjectionMatrix returns R with dimension 33 which is correct but the transVect returned is of dimension 41 not 3*1

My question is how to get back the projection matrix from the function outputs?

edit retag flag offensive close merge delete