HomeSort by relevance Sort by last modified time
    Searched refs:src_points (Results 1 - 5 of 5) sorted by null

  /external/opencv3/modules/calib3d/test/
test_undistort_badarg.cpp 74 cv::Mat src_points; member in class:CV_UndistortPointsBadArgTest
89 cv::undistortPoints(src_points,dst_points,camera_mat,distortion_coeffs,R,P);
256 src_points = cv::cvarrToMat(&_src_points_orig);
259 src_points = cv::cvarrToMat(temp);
261 src_points = cv::cvarrToMat(&_src_points_orig);
265 src_points = cv::cvarrToMat(temp);
267 src_points = cv::cvarrToMat(&_src_points_orig);
270 src_points = cv::Mat();
272 src_points = cv::cvarrToMat(&_src_points_orig);
test_undistort.cpp 192 cv::Mat src_points; member in class:CV_UndistortPointsTest
356 //src_points = &_points;
369 _points.convertTo(src_points, CV_32F);
462 //cv::undistortPoints(src_points,dst_points_mat,camera_mat,distortion_coeffs,R,P);
463 cv::undistortPoints(src_points,dst_points_mat,camera_mat,input2,input3,input4);
467 //cv::undistortPoints(src_points,dst_points,camera_mat,distortion_coeffs,R,P);
468 cv::undistortPoints(src_points,dst_points,camera_mat,input2,input3,input4);
    [all...]
  /external/opencv3/modules/stitching/src/
matchers.cpp 587 Mat src_points(1, static_cast<int>(matches_info.matches.size()), CV_32FC2);
596 src_points.at<Point2f>(0, static_cast<int>(i)) = p;
605 matches_info.H = findHomography(src_points, dst_points, matches_info.inliers_mask, RANSAC);
628 src_points.create(1, matches_info.num_inliers, CV_32FC2);
641 src_points.at<Point2f>(0, inlier_idx) = p;
652 matches_info.H = findHomography(src_points, dst_points, RANSAC);
  /external/opencv3/modules/calib3d/include/opencv2/calib3d/
calib3d_c.h 143 CVAPI(int) cvFindHomography( const CvMat* src_points,
  /external/opencv/cv/include/
cv.h     [all...]

Completed in 986 milliseconds