Home
last modified time | relevance | path

Searched refs:dst_points (Results 1 – 5 of 5) sorted by relevance

/external/opencv3/modules/stitching/src/
Dmatchers.cpp588 Mat dst_points(1, static_cast<int>(matches_info.matches.size()), CV_32FC2); in match() local
601 dst_points.at<Point2f>(0, static_cast<int>(i)) = p; in match()
605 matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, RANSAC); in match()
629 dst_points.create(1, matches_info.num_inliers, CV_32FC2); in match()
646 dst_points.at<Point2f>(0, inlier_idx) = p; in match()
652 matches_info.H = findHomography(src_points, dst_points, RANSAC); in match()
/external/opencv3/modules/calib3d/test/
Dtest_undistort_badarg.cpp75 std::vector<cv::Point2f> dst_points; member in CV_UndistortPointsBadArgTest
89 cv::undistortPoints(src_points,dst_points,camera_mat,distortion_coeffs,R,P); in run_func()
Dtest_undistort.cpp193 std::vector<cv::Point2f> dst_points; member in CV_UndistortPointsTest
424 points[2*i] = dst_points[i].x; in prepare_to_validation()
425 points[2*i+1] = dst_points[i].y; in prepare_to_validation()
468 cv::undistortPoints(src_points,dst_points,camera_mat,input2,input3,input4); in run_func()
/external/opencv3/modules/calib3d/include/opencv2/calib3d/
Dcalib3d_c.h144 const CvMat* dst_points,
/external/opencv/cv/include/
Dcv.h1199 const CvMat* dst_points, in LOAD_CHDL()