Searched refs:_points1 (Results 1 – 1 of 1) sorted by relevance
2402 const CvMat* _points1, const CvMat* _points2, in cvStereoRectifyUncalibrated() argument2432 CV_ASSERT( CV_IS_MAT(_points1) && CV_IS_MAT(_points2) && in cvStereoRectifyUncalibrated()2433 (_points1->rows == 1 || _points1->cols == 1) && in cvStereoRectifyUncalibrated()2435 CV_ARE_SIZES_EQ(_points1, _points2) ); in cvStereoRectifyUncalibrated()2437 npoints = _points1->rows * _points1->cols * CV_MAT_CN(_points1->type) / 2; in cvStereoRectifyUncalibrated()2439 _m1 = cvCreateMat( _points1->rows, _points1->cols, CV_64FC(CV_MAT_CN(_points1->type)) ); in cvStereoRectifyUncalibrated()2457 cvConvert( _points1, _m1 ); in cvStereoRectifyUncalibrated()