Searched refs:new_points1 (Results 1 - 2 of 2) sorted by relevance

/external/opencv3/modules/calib3d/src/
H A Dtriangulate.cpp169 * computes the corrected correspondences new_points1[i] <-> new_points2[i] that minimize the
170 * geometric error d(points1[i],new_points1[i])^2 + d(points2[i],new_points2[i])^2 (where d(a,b)
172 * new_points2' * F * new_points1 = 0.
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) argument
207 if (new_points1 != NULL) {
208 CV_Assert(CV_IS_MAT(new_points1));
209 if (new_points1->cols != points1_->cols || new_points1->rows != 1)
211 if (CV_MAT_CN(new_points1
[all...]
/external/opencv3/modules/calib3d/include/opencv2/calib3d/
H A Dcalib3d_c.h123 CvMat* new_points1, CvMat* new_points2);

Completed in 205 milliseconds