Lines Matching refs:_dst
109 cvUndistort2( const CvArr* _src, CvArr* _dst, const CvMat* A, const CvMat* dist_coeffs ) in cvUndistort2() argument
120 CvMat dststub, *dst = (CvMat*)_dst; in cvUndistort2()
371 cvUndistortPoints( const CvMat* _src, CvMat* _dst, const CvMat* _cameraMatrix, in cvUndistortPoints() argument
390 CV_ASSERT( CV_IS_MAT(_src) && CV_IS_MAT(_dst) && in cvUndistortPoints()
392 (_dst->rows == 1 || _dst->cols == 1) && in cvUndistortPoints()
393 CV_ARE_SIZES_EQ(_src, _dst) && in cvUndistortPoints()
395 (CV_MAT_TYPE(_dst->type) == CV_32FC2 || CV_MAT_TYPE(_dst->type) == CV_64FC2)); in cvUndistortPoints()
426 dstf = (CvPoint2D32f*)_dst->data.ptr; in cvUndistortPoints()
427 dstd = (CvPoint2D64f*)_dst->data.ptr; in cvUndistortPoints()
429 dtype = CV_MAT_TYPE(_dst->type); in cvUndistortPoints()
431 dstep = _dst->rows == 1 ? 1 : _dst->step/CV_ELEM_SIZE(dtype); in cvUndistortPoints()