Home
last modified time | relevance | path

Searched refs:findHomography (Results 1 – 21 of 21) sorted by relevance

/external/opencv3/modules/calib3d/test/
Dtest_homography.cpp314 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/
Dpy_feature_homography.markdown8 - 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/
Dfeature_homography.markdown9 - 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/
Dakaze_tracking.markdown93 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/
Ddetection_of_planar_objects.markdown45 Mat H = findHomography(Mat(points1), Mat(points2), RANSAC, ransacReprojThreshold);
/external/opencv3/samples/python2/
Dlk_homography.py68 … H, status = cv2.findHomography(self.p0, self.p1, (0, cv2.RANSAC)[self.use_ransac], 10.0)
Dasift.py147 H, status = cv2.findHomography(p1, p2, cv2.RANSAC, 5.0)
Dplane_tracker.py108 H, status = cv2.findHomography(p0, p1, cv2.RANSAC, 3.0)
Dfind_obj.py174 H, status = cv2.findHomography(p1, p2, cv2.RANSAC, 5.0)
/external/opencv3/modules/features2d/misc/java/test/
DFeatures2dTest.java135 Mat hmg = Calib3d.findHomography(points1, points2, Calib3d.RANSAC, 3); in testPTOD()
/external/opencv3/modules/calib3d/include/opencv2/
Dcalib3d.hpp323 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/
Dplanar_tracking.cpp73 homography = findHomography(Points(matched1), Points(matched2), in process()
/external/opencv3/modules/stitching/src/
Dmatchers.cpp605 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/
Dfundam.cpp342 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()
Dcompat_ptsetreg.cpp323 cv::Mat H0 = cv::findHomography(src, dst, method, ransacReprojThreshold, in cvFindHomography()
Dcirclesgrid.cpp385 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/
DCalib3dTest.java289 Mat hmg = Calib3d.findHomography(originalPoints, transformedPoints); in testFindHomographyListOfPointListOfPoint()
/external/opencv3/modules/core/doc/
Dintro.markdown43 cv::Mat H = cv::findHomography(points1, points2, CV_RANSAC, 5);
51 Mat H = findHomography(points1, points2, CV_RANSAC, 5 );
/external/opencv3/modules/java/src/
Dcalib3d+Calib3d.java677 …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
Dcalib3d.cpp2633 …::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/
Dglobal_motion.cpp506 M = findHomography(points0, points1, mask, LMEDS); in estimate()