Home | History | Annotate | Download | only in src

Lines Matching defs:points2

2825 //  bool stereoRectifyUncalibrated(Mat points1, Mat points2, Mat F, Size imgSize, Mat& H1, Mat& H2, double threshold = 5)
2837 Mat& points2 = *((Mat*)points2_nativeObj);
2842 bool _retval_ = cv::stereoRectifyUncalibrated( points1, points2, F, imgSize, H1, H2, (double)threshold );
2863 Mat& points2 = *((Mat*)points2_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())
3052 std::vector<Point2f> points2;
3054 Mat_to_vector_Point2f( points2_mat, points2 );
3056 ::Mat _retval_ = cv::findFundamentalMat( points1, points2, (int)method, (double)param1, (double)param2, mask );
3079 std::vector<Point2f> points2;
3081 Mat_to_vector_Point2f( points2_mat, points2 );
3082 ::Mat _retval_ = cv::findFundamentalMat( points1, points2, (int)method, (double)param1, (double)param2 );
3105 std::vector<Point2f> points2;
3107 Mat_to_vector_Point2f( points2_mat, points2 );
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())
3133 Mat& points2 = *((Mat*)points2_nativeObj);
3136 ::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)prob, (double)threshold, mask );
3157 Mat& points2 = *((Mat*)points2_nativeObj);
3159 ::Mat _retval_ = cv::findEssentialMat( points1, points2, (double)focal, pp, (int)method, (double)prob, (double)threshold );
3180 Mat& points2 = *((Mat*)points2_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())
3235 Mat& points2 = *((Mat*)points2_nativeObj);
3240 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp, mask );
3262 Mat& points2 = *((Mat*)points2_nativeObj);
3266 int _retval_ = cv::recoverPose( E, points1, points2, R, t, (double)focal, pp );
3288 Mat& points2 = *((Mat*)points2_nativeObj);
3291 int _retval_ = cv::recoverPose( E, points1, points2, R, t );
3360 // void correctMatches(Mat F, Mat points1, Mat points2, Mat& newPoints1, Mat& newPoints2)
3373 Mat& points2 = *((Mat*)points2_nativeObj);
3376 cv::correctMatches( F, points1, points2, newPoints1, newPoints2 );