Searched refs:calibMatr (Results 1 - 3 of 3) sorted by relevance

/external/opencv/cv/src/
H A Dcvgeometry.cpp528 cvDecomposeProjectionMatrix( const CvMat *projMatr, CvMat *calibMatr, argument
542 if(projMatr == 0 || calibMatr == 0 || rotMatr == 0 || posVect == 0)
545 if(!CV_IS_MAT(projMatr) || !CV_IS_MAT(calibMatr) || !CV_IS_MAT(rotMatr) || !CV_IS_MAT(posVect))
551 if(calibMatr->cols != 3 || calibMatr->rows != 3 || rotMatr->cols != 3 || rotMatr->rows != 3)
583 CV_CALL(cvRQDecomp3x3(tmpMatrixM, calibMatr, rotMatr, rotMatrX, rotMatrY, rotMatrZ, eulerAngles));
H A Dcvcalibration.cpp1756 void cvCalibrationMatrixValues( const CvMat *calibMatr, CvSize imgSize,
1768 if(calibMatr == 0)
1771 if(!CV_IS_MAT(calibMatr))
1774 if(calibMatr->cols != 3 || calibMatr->rows != 3)
1777 alphax = cvmGet(calibMatr, 0, 0);
1778 alphay = cvmGet(calibMatr, 1, 1);
1811 *principalPoint = cvPoint2D64f(cvmGet(calibMatr, 0, 2) / mx, cvmGet(calibMatr, 1, 2) / my);
/external/opencv/cv/include/
H A Dcv.h1213 CVAPI(void) cvDecomposeProjectionMatrix( const CvMat *projMatr, CvMat *calibMatr,

Completed in 96 milliseconds