Lines Matching refs:_m
777 CvMat *_M = 0, *_m = 0;
805 _M = (CvMat*)objectPoints;
808 CV_CALL( _M = cvCreateMat( 1, count, CV_64FC3 ));
809 CV_CALL( cvConvertPointsHomogeneous( objectPoints, _M ));
815 _m = imagePoints;
817 CV_CALL( _m = cvCreateMat( 1, count, CV_64FC2 ));
819 M = (CvPoint3D64f*)_M->data.db;
820 m = (CvPoint2D64f*)_m->data.db;
1091 if( _m != imagePoints )
1092 cvConvertPointsHomogeneous( _m, imagePoints );
1106 if( _M != objectPoints )
1107 cvReleaseMat( &_M );
1108 if( _m != imagePoints )
1109 cvReleaseMat( &_m );
1130 CvMat *_M = 0, *_Mxy = 0, *_m = 0, *_mn = 0, *_L = 0, *_J = 0;
1163 CV_CALL( _M = cvCreateMat( 1, count, CV_64FC3 ));
1164 CV_CALL( _m = cvCreateMat( 1, count, CV_64FC2 ));
1166 CV_CALL( cvConvertPointsHomogeneous( objectPoints, _M ));
1167 CV_CALL( cvConvertPointsHomogeneous( imagePoints, _m ));
1181 cvUndistortPoints( _m, _mn, &_A, distCoeffs, 0, &_Ar );
1183 Mc = cvAvg(_M);
1184 cvReshape( _M, _M, 1, count );
1185 cvMulTransposed( _M, &_MM, 1, &_Mc );
1210 const double* src = _M->data.db + i*3;
1245 CvPoint3D64f* M = (CvPoint3D64f*)_M->data.db;
1285 cvReshape( _M, _M, 3, 1 );
1297 cvProjectPoints2( _M, &_r, &_t, &_A, distCoeffs,
1299 cvSub( _m, _mn, _mn );
1326 cvReleaseMat( &_M );
1328 cvReleaseMat( &_m );
1385 CvMat _m, _M;
1386 cvGetCols( objectPoints, &_M, pos, pos + ni );
1387 cvGetCols( imagePoints, &_m, pos, pos + ni );
1389 cvFindHomography( &_M, &_m, &_H );
1452 CvMat *_M = 0, *_m = 0, *_Ji = 0, *_Je = 0, *_err = 0;
1529 CV_CALL( _M = cvCreateMat( 1, total, CV_64FC3 ));
1530 CV_CALL( _m = cvCreateMat( 1, total, CV_64FC2 ));
1532 CV_CALL( cvConvertPointsHomogeneous( objectPoints, _M ));
1533 CV_CALL( cvConvertPointsHomogeneous( imagePoints, _m ));
1570 cvAvgSdv( _M, &mean, &sdv );
1575 ((CvPoint3D64f*)_M->data.db)[i].z = 0.;
1585 cvInitIntrinsicParams2D( _M, _m, npoints, imageSize, &_A, aspectRatio );
1624 cvGetCols( _M, &_Mi, pos, pos + ni );
1625 cvGetCols( _m, &_mi, pos, pos + ni );
1662 cvGetCols( _M, &_Mi, pos, pos + ni );
1663 cvGetCols( _m, &_mi, pos, pos + ni );
1748 cvReleaseMat( &_M );
1749 cvReleaseMat( &_m );