Searched refs:tmpMatrixM (Results 1 – 1 of 1) sorted by relevance
/external/opencv/cv/src/ |
D | cvgeometry.cpp | 536 CvMat *tmpMatrixM = 0; in cvDecomposeProjectionMatrix() local 560 CV_CALL(tmpMatrixM = cvCreateMat(3, 3, CV_64F)); in cvDecomposeProjectionMatrix() 579 cvGetCols(projMatr, tmpMatrixM, 0, 3); // M is first square matrix of P. in cvDecomposeProjectionMatrix() 581 …assert(cvDet(tmpMatrixM) != 0.0); // So far only finite cameras could be decomposed, so M has to b… in cvDecomposeProjectionMatrix() 583 … CV_CALL(cvRQDecomp3x3(tmpMatrixM, calibMatr, rotMatr, rotMatrX, rotMatrY, rotMatrZ, eulerAngles)); in cvDecomposeProjectionMatrix() 590 cvReleaseMat(&tmpMatrixM); in cvDecomposeProjectionMatrix()
|