Searched refs:points1_ (Results 1 – 5 of 5) sorted by relevance
79 const Point2f* points1_ = points1.getMat().ptr<Point2f>(); in process() local125 dx = points1_[idx].x - points0_[idx].x; in process()126 dy = points1_[idx].y - points0_[idx].y; in process()133 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) < in process()157 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) < in process()169 dxBest += points1_[inliers[i]].x - points0_[inliers[i]].x; in process()170 dyBest += points1_[inliers[i]].y - points0_[inliers[i]].y; in process()184 if (sqr(x1 - points1_[cell[i]].x) + sqr(y1 - points1_[cell[i]].y) < in process()
84 run(frame0_, frame1_, points0_, points1_, status_, errors_); in run()88 run(frame0_, frame1_, points0_, points1_, status_); in run()90 points1_.download(points1.getMatRef()); in run()
373 Point2f *points1_ = points1.getMat().ptr<Point2f>(); in estimateGlobalMotionLeastSquares() local375 return impls[model](npoints, points0_, points1_, rmse); in estimateGlobalMotionLeastSquares()392 const Point2f *points1_ = points1.getMat().ptr<Point2f>(); in estimateGlobalMotionRansac() local427 subset1[i] = points1_[indices[i]]; in estimateGlobalMotionRansac()436 p1 = points1_[i]; in estimateGlobalMotionRansac()461 p1 = points1_[i]; in estimateGlobalMotionRansac()553 const Point2f *points1_ = points1.getMat().ptr<Point2f>(); in estimate() local593 p1 = points1_[i]; in estimate()
181 cvCorrectMatches(CvMat *F_, CvMat *points1_, CvMat *points2_, CvMat *new_points1, CvMat *new_points… in cvCorrectMatches() argument195 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()203 if (((points1_->type & CV_MAT_TYPE_MASK) >> 3) != 1 ) in cvCorrectMatches()209 if (new_points1->cols != points1_->cols || new_points1->rows != 1) in cvCorrectMatches()227 points1.reset(cvCreateMat(points1_->rows,points1_->cols,CV_64FC2)); in cvCorrectMatches()228 cvConvert(points1_, points1); in cvCorrectMatches()
125 cuda::GpuMat frame0_, frame1_, points0_, points1_, status_, errors_; member in cv::videostab::SparsePyrLkOptFlowEstimatorGpu