Searched refs:tmpMatrixM (Results 1 – 2 of 2) 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()
|
/external/opencv3/modules/calib3d/src/ |
D | calibration.cpp | 2920 CvMat tmpMatrixM; in cvDecomposeProjectionMatrix() local 2952 cvGetCols(projMatr, &tmpMatrixM, 0, 3); // M is first square matrix of P. in cvDecomposeProjectionMatrix() 2954 …CV_Assert(cvDet(&tmpMatrixM) != 0.0); // So far only finite cameras could be decomposed, so M has … in cvDecomposeProjectionMatrix() 2956 cvRQDecomp3x3(&tmpMatrixM, calibMatr, rotMatr, rotMatrX, rotMatrY, rotMatrZ, eulerAngles); in cvDecomposeProjectionMatrix()
|