Lines Matching refs:dstPoints
673 // C++: Mat findHomography(vector_Point2f srcPoints, vector_Point2f dstPoints, int method = 0, double ransacReprojThreshold = 3, Mat& mask = Mat(), int maxIters = 2000, double confidence = 0.995)
676 //javadoc: findHomography(srcPoints, dstPoints, method, ransacReprojThreshold, mask, maxIters, confidence)
677 public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints, int method, double ransacReprojThreshold, Mat mask, int maxIters, double confidence)
680 Mat dstPoints_mat = dstPoints;
686 //javadoc: findHomography(srcPoints, dstPoints, method, ransacReprojThreshold)
687 public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints, int method, double ransacReprojThreshold)
690 Mat dstPoints_mat = dstPoints;
696 //javadoc: findHomography(srcPoints, dstPoints)
697 public static Mat findHomography(MatOfPoint2f srcPoints, MatOfPoint2f dstPoints)
700 Mat dstPoints_mat = dstPoints;
1232 // C++: Mat findHomography(vector_Point2f srcPoints, vector_Point2f dstPoints, int method = 0, double ransacReprojThreshold = 3, Mat& mask = Mat(), int maxIters = 2000, double confidence = 0.995)