RANSAC 1216 modules/calib3d/include/opencv2/calib3d.hpp int method = RANSAC, double prob = 0.999, RANSAC 838 modules/calib3d/src/circlesgrid.cpp Mat H = findHomography(Mat(centers), Mat(dstPoints), RANSAC); RANSAC 438 modules/calib3d/src/five-point.cpp if( method == RANSAC ) RANSAC 382 modules/calib3d/src/fundam.cpp else if( method == RANSAC ) RANSAC 401 modules/calib3d/src/fundam.cpp if( method == RANSAC || method == LMEDS ) RANSAC 68 modules/calib3d/test/test_homography.cpp int METHOD[METHODS_COUNT] = {0, cv::RANSAC, cv::LMEDS, cv::RHO}; RANSAC 175 modules/calib3d/test/test_homography.cpp cout << "Method: "; if (_method == RANSAC) cout << "RANSAC" << endl; else if (_method == cv::RHO) cout << "RHO" << endl; else cout << _method << endl; RANSAC 211 modules/calib3d/test/test_homography.cpp cout << "Method: "; if (_method == RANSAC) cout << "RANSAC" << endl; else if (_method == cv::RHO) cout << "RHO" << endl; else cout << _method << endl; RANSAC 224 modules/calib3d/test/test_homography.cpp cout << "Method: "; if (_method == RANSAC) cout << "RANSAC" << endl; else if (_method == cv::RHO) cout << "RHO" << endl; else cout << _method << endl; RANSAC 237 modules/calib3d/test/test_homography.cpp cout << "Method: "; if (_method == RANSAC) cout << "RANSAC" << endl; else if (_method == cv::RHO) cout << "RHO" << endl; else cout << _method << endl; RANSAC 343 modules/calib3d/test/test_homography.cpp case RANSAC: RANSAC 471 modules/calib3d/test/test_homography.cpp case RANSAC: RANSAC 618 modules/calib3d/test/test_homography.cpp Mat h = findHomography(p1, p2, RANSAC, 0.01, mask); RANSAC 684 modules/calib3d/test/test_homography.cpp H0 = findHomography( pointframe1, pointframe2, RANSAC, 3.0, inliers0 ); RANSAC 135 modules/features2d/misc/java/test/Features2dTest.java Mat hmg = Calib3d.findHomography(points1, points2, Calib3d.RANSAC, 3); RANSAC 605 modules/stitching/src/matchers.cpp matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, RANSAC); RANSAC 652 modules/stitching/src/matchers.cpp matches_info.H = findHomography(src_points, dst_points, RANSAC); RANSAC 74 samples/cpp/tutorial_code/features2D/AKAZE_tracking/planar_tracking.cpp RANSAC, ransac_thresh, inlier_mask);