HomeSort by relevance Sort by last modified time
    Searched full:ransacreprojthreshold (Results 1 - 9 of 9) sorted by null

  /external/opencv3/doc/tutorials/features2d/detection_of_planar_objects/
detection_of_planar_objects.markdown 45 Mat H = findHomography(Mat(points1), Mat(points2), RANSAC, ransacReprojThreshold);
  /external/opencv3/modules/calib3d/src/
fundam.cpp 267 double ransacReprojThreshold,
318 (float) ransacReprojThreshold,
343 int method, double ransacReprojThreshold, OutputArray _mask,
372 if( ransacReprojThreshold <= 0 )
373 ransacReprojThreshold = defaultRANSACReprojThreshold;
383 result = createRANSACPointSetRegistrator(cb, 4, ransacReprojThreshold, confidence, maxIters)->run(src, dst, H, tempMask);
387 result = createAndRunRHORegistrator(confidence, maxIters, ransacReprojThreshold, npoints, src, dst, H, tempMask);
420 OutputArray _mask, int method, double ransacReprojThreshold )
422 return cv::findHomography(_points1, _points2, method, ransacReprojThreshold, _mask);
    [all...]
compat_ptsetreg.cpp 302 double ransacReprojThreshold, CvMat* _mask, int maxIters,
323 cv::Mat H0 = cv::findHomography(src, dst, method, ransacReprojThreshold,
  /external/opencv3/modules/java/src/
calib3d+Calib3d.java     [all...]
calib3d.cpp     [all...]
  /external/opencv3/modules/calib3d/include/opencv2/calib3d/
calib3d_c.h 147 double ransacReprojThreshold CV_DEFAULT(3),
  /external/opencv/cv/src/
cvfundam.cpp 577 CvMat* __H, int method, double ransacReprojThreshold,
622 result = estimator.runRANSAC( M, m, &_H, tempMask, ransacReprojThreshold, confidence );
    [all...]
  /external/opencv3/modules/calib3d/include/opencv2/
calib3d.hpp 270 @param ransacReprojThreshold Maximum allowed reprojection error to treat a point pair as an inlier
272 \f[\| \texttt{dstPoints} _i - \texttt{convertPointsHomogeneous} ( \texttt{H} * \texttt{srcPoints} _i) \| > \texttt{ransacReprojThreshold}\f]
324 int method = 0, double ransacReprojThreshold = 3,
330 OutputArray mask, int method = 0, double ransacReprojThreshold = 3 );
    [all...]
  /external/opencv/cv/include/
cv.h     [all...]

Completed in 794 milliseconds