Searched refs:_m1 (Results 1 – 2 of 2) sorted by relevance
/external/opencv/cv/src/ |
D | cvfundam.cpp | 683 int CvFMEstimator::run7Point( const CvMat* _m1, const CvMat* _m2, CvMat* _fmatrix ) in run7Point() argument 693 const CvPoint2D64f* m1 = (const CvPoint2D64f*)_m1->data.ptr; in run7Point() 791 int CvFMEstimator::run8Point( const CvMat* _m1, const CvMat* _m2, CvMat* _fmatrix ) in run8Point() argument 802 const CvPoint2D64f* m1 = (const CvPoint2D64f*)_m1->data.ptr; in run8Point() 805 int i, j, k, count = _m1->cols*_m1->rows; in run8Point() 913 void CvFMEstimator::computeReprojError( const CvMat* _m1, const CvMat* _m2, in computeReprojError() argument 916 int i, count = _m1->rows*_m1->cols; in computeReprojError() 917 const CvPoint2D64f* m1 = (const CvPoint2D64f*)_m1->data.ptr; in computeReprojError()
|
D | cvcalibration.cpp | 2406 CvMat* _m1 = 0; in cvStereoRectifyUncalibrated() local 2439 _m1 = cvCreateMat( _points1->rows, _points1->cols, CV_64FC(CV_MAT_CN(_points1->type)) ); in cvStereoRectifyUncalibrated() 2457 cvConvert( _points1, _m1 ); in cvStereoRectifyUncalibrated() 2459 cvReshape( _m1, _m1, 2, 1 ); in cvStereoRectifyUncalibrated() 2460 cvReshape( _m1, _m1, 2, 1 ); in cvStereoRectifyUncalibrated() 2462 m1 = (CvPoint2D64f*)_m1->data.ptr; in cvStereoRectifyUncalibrated() 2469 cvComputeCorrespondEpilines( _m1, 1, &F, _lines1 ); in cvStereoRectifyUncalibrated() 2497 _m1->cols = _m2->cols = npoints; in cvStereoRectifyUncalibrated() 2565 cvPerspectiveTransform( _m1, _m1, &H0 ); in cvStereoRectifyUncalibrated() 2572 cvConvertPointsHomogeneous( _m1, &A ); in cvStereoRectifyUncalibrated() [all …]
|