findHomography 323 modules/calib3d/include/opencv2/calib3d.hpp CV_EXPORTS_W Mat findHomography( InputArray srcPoints, InputArray dstPoints, findHomography 329 modules/calib3d/include/opencv2/calib3d.hpp CV_EXPORTS Mat findHomography( InputArray srcPoints, InputArray dstPoints, findHomography 289 modules/calib3d/misc/java/test/Calib3dTest.java Mat hmg = Calib3d.findHomography(originalPoints, transformedPoints); findHomography 385 modules/calib3d/src/circlesgrid.cpp Mat homography = findHomography(Mat(sortedCorners), Mat(idealPoints), 0); findHomography 838 modules/calib3d/src/circlesgrid.cpp Mat H = findHomography(Mat(centers), Mat(dstPoints), RANSAC); findHomography 323 modules/calib3d/src/compat_ptsetreg.cpp cv::Mat H0 = cv::findHomography(src, dst, method, ransacReprojThreshold, findHomography 422 modules/calib3d/src/fundam.cpp return cv::findHomography(_points1, _points2, method, ransacReprojThreshold, _mask); findHomography 314 modules/calib3d/test/test_homography.cpp Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method), findHomography 315 modules/calib3d/test/test_homography.cpp cv::findHomography(src_mat_2f, dst_vec, method), findHomography 316 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_mat_2f, method), findHomography 317 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_vec, method) }; findHomography 347 modules/calib3d/test/test_homography.cpp Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method, reproj_threshold, mask[0]), findHomography 348 modules/calib3d/test/test_homography.cpp cv::findHomography(src_mat_2f, dst_vec, method, reproj_threshold, mask[1]), findHomography 349 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_mat_2f, method, reproj_threshold, mask[2]), findHomography 350 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_vec, method, reproj_threshold, mask[3]) }; findHomography 417 modules/calib3d/test/test_homography.cpp Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f), findHomography 418 modules/calib3d/test/test_homography.cpp cv::findHomography(src_mat_2f, dst_vec), findHomography 419 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_mat_2f), findHomography 420 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_vec) }; findHomography 475 modules/calib3d/test/test_homography.cpp Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method, reproj_threshold, mask_res[0]), findHomography 476 modules/calib3d/test/test_homography.cpp cv::findHomography(src_mat_2f, dst_vec, method, reproj_threshold, mask_res[1]), findHomography 477 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_mat_2f, method, reproj_threshold, mask_res[2]), findHomography 478 modules/calib3d/test/test_homography.cpp cv::findHomography(src_vec, dst_vec, method, reproj_threshold, mask_res[3]) }; findHomography 618 modules/calib3d/test/test_homography.cpp Mat h = findHomography(p1, p2, RANSAC, 0.01, mask); findHomography 684 modules/calib3d/test/test_homography.cpp H0 = findHomography( pointframe1, pointframe2, RANSAC, 3.0, inliers0 ); findHomography 692 modules/calib3d/test/test_homography.cpp H1 = findHomography( pointframe1, pointframe2, RHO, 3.0, inliers1 ); findHomography 135 modules/features2d/misc/java/test/Features2dTest.java Mat hmg = Calib3d.findHomography(points1, points2, Calib3d.RANSAC, 3); findHomography 605 modules/stitching/src/matchers.cpp matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, RANSAC); findHomography 652 modules/stitching/src/matchers.cpp matches_info.H = findHomography(src_points, dst_points, RANSAC); findHomography 506 modules/videostab/src/global_motion.cpp M = findHomography(points0, points1, mask, LMEDS); findHomography 73 samples/cpp/tutorial_code/features2D/AKAZE_tracking/planar_tracking.cpp homography = findHomography(Points(matched1), Points(matched2),