Home
last modified time | relevance | path

Searched refs:_npoints (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cv/src/
Dcvcalibration.cpp1829 const CvMat* _imagePoints2, const CvMat* _npoints, in cvStereoCalibrate() argument
1860 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()
/external/opencv3/modules/calib3d/src/
Dcalibration.cpp1636 const CvMat* _imagePoints2, const CvMat* _npoints, in cvStereoCalibrate() argument
1658 CV_IS_MAT(_objectPoints) && CV_IS_MAT(_npoints) && in cvStereoCalibrate()
1664 CV_Assert( (_npoints->cols == 1 || _npoints->rows == 1) && in cvStereoCalibrate()
1665 CV_MAT_TYPE(_npoints->type) == CV_32SC1 ); in cvStereoCalibrate()
1667 nimages = _npoints->cols + _npoints->rows - 1; in cvStereoCalibrate()
1668 npoints.reset(cvCreateMat( _npoints->rows, _npoints->cols, _npoints->type )); in cvStereoCalibrate()
1669 cvCopy( _npoints, npoints ); in cvStereoCalibrate()
3208 CvMat _objPt = objPt, _imgPt = imgPt, _npoints = npoints, _cameraMatrix = cameraMatrix; in initCameraMatrix2D() local
3209 cvInitIntrinsicParams2D( &_objPt, &_imgPt, &_npoints, in initCameraMatrix2D()
/external/opencv3/modules/calib3d/test/
Dtest_cameracalibration.cpp1730 CvMat _objPt = objPt, _imgPt = imgPt, _imgPt2 = imgPt2, _npoints = npoints; in calibrateStereoCamera() local
1735 return cvStereoCalibrate(&_objPt, &_imgPt, &_imgPt2, &_npoints, &_cameraMatrix1, in calibrateStereoCamera()