Lines Matching refs:points1_
175 * points1_ : 1xN matrix containing the first set of points
177 * new_points1 : the optimized points1_. if this is NULL, the corrected points are placed back in points1_
181 cvCorrectMatches(CvMat *F_, CvMat *points1_, CvMat *points2_, CvMat *new_points1, CvMat *new_points2)
195 if (!CV_IS_MAT(F_) || !CV_IS_MAT(points1_) || !CV_IS_MAT(points2_) )
201 if (!(points1_->rows == 1 && points2_->rows == 1 && points1_->cols == points2_->cols))
203 if (((points1_->type & CV_MAT_TYPE_MASK) >> 3) != 1 )
209 if (new_points1->cols != points1_->cols || new_points1->rows != 1)
227 points1.reset(cvCreateMat(points1_->rows,points1_->cols,CV_64FC2));
228 cvConvert(points1_, points1);