/external/opencv3/modules/calib3d/test/ |
D | test_homography.cpp | 314 Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method), in run() 315 cv::findHomography(src_mat_2f, dst_vec, method), in run() 316 cv::findHomography(src_vec, dst_mat_2f, method), in run() 317 cv::findHomography(src_vec, dst_vec, method) }; in run() 347 …Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f, method, reproj_threshold, mask[0]), in run() 348 … cv::findHomography(src_mat_2f, dst_vec, method, reproj_threshold, mask[1]), in run() 349 … cv::findHomography(src_vec, dst_mat_2f, method, reproj_threshold, mask[2]), in run() 350 … cv::findHomography(src_vec, dst_vec, method, reproj_threshold, mask[3]) }; in run() 417 Mat H_res_64 [4] = { cv::findHomography(src_mat_2f, dst_mat_2f), in run() 418 cv::findHomography(src_mat_2f, dst_vec), in run() [all …]
|
/external/opencv3/doc/py_tutorials/py_feature2d/py_feature_homography/ |
D | py_feature_homography.markdown | 8 - We will mix up the feature matching and findHomography from calib3d module to find known 19 For that, we can use a function from calib3d module, ie **cv2.findHomography()**. If we pass the set 27 **cv2.findHomography()** returns a mask which specifies the inlier and outlier points. 78 M, mask = cv2.findHomography(src_pts, dst_pts, cv2.RANSAC,5.0)
|
/external/opencv3/doc/tutorials/features2d/feature_homography/ |
D | feature_homography.markdown | 9 - Use the function @ref cv::findHomography to find the transform between matched keypoints. 98 Mat H = findHomography( obj, scene, RANSAC );
|
/external/opencv3/doc/tutorials/features2d/akaze_tracking/ |
D | akaze_tracking.markdown | 93 homography = findHomography(Points(matched1), Points(matched2), 110 Since *findHomography* computes the inliers we only have to save the chosen points and
|
/external/opencv3/doc/tutorials/features2d/detection_of_planar_objects/ |
D | detection_of_planar_objects.markdown | 45 Mat H = findHomography(Mat(points1), Mat(points2), RANSAC, ransacReprojThreshold);
|
/external/opencv3/samples/python2/ |
D | lk_homography.py | 68 … H, status = cv2.findHomography(self.p0, self.p1, (0, cv2.RANSAC)[self.use_ransac], 10.0)
|
D | asift.py | 147 H, status = cv2.findHomography(p1, p2, cv2.RANSAC, 5.0)
|
D | plane_tracker.py | 108 H, status = cv2.findHomography(p0, p1, cv2.RANSAC, 3.0)
|
D | find_obj.py | 174 H, status = cv2.findHomography(p1, p2, cv2.RANSAC, 5.0)
|
/external/opencv3/modules/features2d/misc/java/test/ |
D | Features2dTest.java | 135 Mat hmg = Calib3d.findHomography(points1, points2, Calib3d.RANSAC, 3); in testPTOD()
|
/external/opencv3/modules/calib3d/include/opencv2/ |
D | calib3d.hpp | 323 CV_EXPORTS_W Mat findHomography( InputArray srcPoints, InputArray dstPoints, 329 CV_EXPORTS Mat findHomography( InputArray srcPoints, InputArray dstPoints,
|
/external/opencv3/samples/cpp/tutorial_code/features2D/AKAZE_tracking/ |
D | planar_tracking.cpp | 73 homography = findHomography(Points(matched1), Points(matched2), in process()
|
/external/opencv3/modules/stitching/src/ |
D | matchers.cpp | 605 matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, RANSAC); in match() 652 matches_info.H = findHomography(src_points, dst_points, RANSAC); in match()
|
/external/opencv3/modules/calib3d/src/ |
D | fundam.cpp | 342 cv::Mat cv::findHomography( InputArray _points1, InputArray _points2, in findHomography() function in cv 419 cv::Mat cv::findHomography( InputArray _points1, InputArray _points2, in findHomography() function in cv 422 return cv::findHomography(_points1, _points2, method, ransacReprojThreshold, _mask); in findHomography()
|
D | compat_ptsetreg.cpp | 323 cv::Mat H0 = cv::findHomography(src, dst, method, ransacReprojThreshold, in cvFindHomography()
|
D | circlesgrid.cpp | 385 Mat homography = findHomography(Mat(sortedCorners), Mat(idealPoints), 0); in rectifyPatternPoints() 838 Mat H = findHomography(Mat(centers), Mat(dstPoints), RANSAC); in rectifyGrid()
|
/external/opencv3/modules/calib3d/misc/java/test/ |
D | Calib3dTest.java | 289 Mat hmg = Calib3d.findHomography(originalPoints, transformedPoints); in testFindHomographyListOfPointListOfPoint()
|
/external/opencv3/modules/core/doc/ |
D | intro.markdown | 43 cv::Mat H = cv::findHomography(points1, points2, CV_RANSAC, 5); 51 Mat H = findHomography(points1, points2, CV_RANSAC, 5 );
|
/external/opencv3/modules/java/src/ |
D | calib3d+Calib3d.java | 677 …public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints, int method, doubl… in findHomography() method in Calib3d 687 …public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints, int method, doubl… in findHomography() method in Calib3d 697 public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints) in findHomography() method in Calib3d
|
D | calib3d.cpp | 2633 …::Mat _retval_ = cv::findHomography( srcPoints, dstPoints, (int)method, (double)ransacReprojThresh… in Java_org_opencv_calib3d_Calib3d_findHomography_10() 2659 …::Mat _retval_ = cv::findHomography( srcPoints, dstPoints, (int)method, (double)ransacReprojThresh… in Java_org_opencv_calib3d_Calib3d_findHomography_11() 2685 ::Mat _retval_ = cv::findHomography( srcPoints, dstPoints ); in Java_org_opencv_calib3d_Calib3d_findHomography_12()
|
/external/opencv3/modules/videostab/src/ |
D | global_motion.cpp | 506 M = findHomography(points0, points1, mask, LMEDS); in estimate()
|