opencv - how can i get the camera projection matrix out of calibrateCamera() return values -


i trying 3x4 camera matrix triangulation process calibratecamera() returns 3x3 , 4x1 matrices.

how can 3x4 out of matrices?

thanks in advance!!

calibratecamera() returns you
3x3 matrix cameramatrix,
4x1 matrix distcoeffs, , rvecs , tvecs vectors of 3x1 rotation(r) , 3x1 transformation(t) matrices.

what want projectionmatrix, multiply [cameramatrix] [r|t]. 3d 2d projection

therefore, returs 3x4 projectionmatrix.
can read opencv documentation more info.


Comments

Popular posts from this blog

node.js - Bad Request - node js ajax post -

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -