Home
last modified time | relevance | path

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

/external/opencv3/modules/calib3d/src/
Dtriangulate.cpp181 cvCorrectMatches(CvMat *F_, CvMat *points1_, CvMat *points2_, CvMat *new_points1, CvMat *new_points… in cvCorrectMatches() argument
195 if (!CV_IS_MAT(F_) || !CV_IS_MAT(points1_) || !CV_IS_MAT(points2_) ) in cvCorrectMatches()
201 if (!(points1_->rows == 1 && points2_->rows == 1 && points1_->cols == points2_->cols)) in cvCorrectMatches()
205 if (((points2_->type & CV_MAT_TYPE_MASK) >> 3) != 1 ) in cvCorrectMatches()
216 if (new_points2->cols != points2_->cols || new_points2->rows != 1) in cvCorrectMatches()
231 points2.reset(cvCreateMat(points2_->rows,points2_->cols,CV_64FC2)); in cvCorrectMatches()
232 cvConvert(points2_, points2); in cvCorrectMatches()