Home | History | Annotate | Download | only in src

Lines Matching defs:points1

2825 //  bool stereoRectifyUncalibrated(Mat points1, Mat points2, Mat F, Size imgSize, Mat& H1, Mat& H2, double threshold = 5)
2836 Mat& points1 = *((Mat*)points1_nativeObj);
2842 bool _retval_ = cv::stereoRectifyUncalibrated( points1, points2, F, imgSize, H1, H2, (double)threshold );
2862 Mat& points1 = *((Mat*)points1_nativeObj);
2868 bool _retval_ = cv::stereoRectifyUncalibrated( points1, points2, F, imgSize, H1, H2 );
3038 // Mat findFundamentalMat(vector_Point2f points1, vector_Point2f points2, int method = FM_RANSAC, double param1 = 3., double param2 = 0.99, Mat& mask = Mat())
3049 std::vector<Point2f> points1;
3051 Mat_to_vector_Point2f( points1_mat, points1 );
3056 ::Mat _retval_ = cv::findFundamentalMat( points1, points2, (int)method, (double)param1, (double)param2, mask );
3076 std::vector<Point2f> points1;
3078 Mat_to_vector_Point2f( points1_mat, points1 );
3082 ::Mat _retval_ = cv::findFundamentalMat( points1, points2, (int)method, (double)param1, (double)param2 );
3102 std::vector<Point2f> points1;
3104 Mat_to_vector_Point2f( points1_mat, points1 );
3108 ::Mat _retval_ = cv::findFundamentalMat( points1, points2 );
3121 // Mat findEssentialMat(Mat points1, Mat points2, double focal = 1.0, Point2d pp = Point2d(0, 0), int method = RANSAC, double prob = 0.999, double threshold = 1.0, Mat& mask = Mat())
3132 Mat& points1 = *((Mat*)points1_nativeObj);
3136 ::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)prob, (double)threshold, mask );
3156 Mat& points1 = *((Mat*)points1_nativeObj);
3159 ::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)prob, (double)threshold );
3179 Mat& points1 = *((Mat*)points1_nativeObj);
3181 ::Mat _retval_ = cv::findEssentialMat( points1, points2 );
3222 // int recoverPose(Mat E, Mat points1, Mat points2, Mat& R, Mat& t, double focal = 1.0, Point2d pp = Point2d(0, 0), Mat& mask = Mat())
3234 Mat& points1 = *((Mat*)points1_nativeObj);
3240 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp, mask );
3261 Mat& points1 = *((Mat*)points1_nativeObj);
3266 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp );
3287 Mat& points1 = *((Mat*)points1_nativeObj);
3291 int _retval_ = cv::recoverPose( E, points1, points2, R, t );
3360 // void correctMatches(Mat F, Mat points1, Mat points2, Mat& newPoints1, Mat& newPoints2)
3372 Mat& points1 = *((Mat*)points1_nativeObj);
3376 cv::correctMatches( F, points1, points2, newPoints1, newPoints2 );