Searched refs:_npoints (Results 1 – 1 of 1) sorted by relevance
1829 const CvMat* _imagePoints2, const CvMat* _npoints, in cvStereoCalibrate() argument1860 CV_IS_MAT(_objectPoints) && CV_IS_MAT(_npoints) && in cvStereoCalibrate()1866 CV_ASSERT( (_npoints->cols == 1 || _npoints->rows == 1) && in cvStereoCalibrate()1867 CV_MAT_TYPE(_npoints->type) == CV_32SC1 ); in cvStereoCalibrate()1869 nimages = _npoints->cols + _npoints->rows - 1; in cvStereoCalibrate()1870 npoints = cvCreateMat( _npoints->rows, _npoints->cols, _npoints->type ); in cvStereoCalibrate()1871 cvCopy( _npoints, npoints ); in cvStereoCalibrate()