Home
last modified time | relevance | path

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

/external/opencv3/modules/videostab/src/
Doutlier_rejection.cpp79 const Point2f* points1_ = points1.getMat().ptr<Point2f>(); in process() local
125 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()
Doptical_flow.cpp84 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()
Dglobal_motion.cpp373 Point2f *points1_ = points1.getMat().ptr<Point2f>(); in estimateGlobalMotionLeastSquares() local
375 return impls[model](npoints, points0_, points1_, rmse); in estimateGlobalMotionLeastSquares()
392 const Point2f *points1_ = points1.getMat().ptr<Point2f>(); in estimateGlobalMotionRansac() local
427 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() local
593 p1 = points1_[i]; in estimate()
/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()
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()
/external/opencv3/modules/videostab/include/opencv2/videostab/
Doptical_flow.hpp125 cuda::GpuMat frame0_, frame1_, points0_, points1_, status_, errors_; member in cv::videostab::SparsePyrLkOptFlowEstimatorGpu