OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:points1_
(Results
1 - 5
of
5
) sorted by null
/external/opencv3/modules/videostab/src/
outlier_rejection.cpp
79
const Point2f*
points1_
= points1.getMat().ptr<Point2f>();
local
125
dx =
points1_
[idx].x - points0_[idx].x;
126
dy =
points1_
[idx].y - points0_[idx].y;
133
if (sqr(x1 -
points1_
[cell[i]].x) + sqr(y1 -
points1_
[cell[i]].y) <
157
if (sqr(x1 -
points1_
[cell[i]].x) + sqr(y1 -
points1_
[cell[i]].y) <
169
dxBest +=
points1_
[inliers[i]].x - points0_[inliers[i]].x;
170
dyBest +=
points1_
[inliers[i]].y - points0_[inliers[i]].y;
184
if (sqr(x1 -
points1_
[cell[i]].x) + sqr(y1 - points1_[cell[i]].y)
[
all
...]
optical_flow.cpp
84
run(frame0_, frame1_, points0_,
points1_
, status_, errors_);
88
run(frame0_, frame1_, points0_,
points1_
, status_);
90
points1_
.download(points1.getMatRef());
global_motion.cpp
373
Point2f *
points1_
= points1.getMat().ptr<Point2f>();
local
375
return impls[model](npoints, points0_,
points1_
, rmse);
392
const Point2f *
points1_
= points1.getMat().ptr<Point2f>();
local
427
subset1[i] =
points1_
[indices[i]];
436
p1 =
points1_
[i];
461
p1 =
points1_
[i];
553
const Point2f *
points1_
= points1.getMat().ptr<Point2f>();
593
p1 =
points1_
[i];
/external/opencv3/modules/calib3d/src/
triangulate.cpp
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))
[
all
...]
/external/opencv3/modules/videostab/include/opencv2/videostab/
optical_flow.hpp
125
cuda::GpuMat frame0_, frame1_, points0_,
points1_
, status_, errors_;
member in class:cv::videostab::SparsePyrLkOptFlowEstimatorGpu
Completed in 44 milliseconds