From 4e469f28663a5613662b4ceba875a2106c17dbd5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emanuel=20J=C3=B6bstl?= Date: Fri, 8 Jan 2016 14:46:17 +0000 Subject: [PATCH] Changed parameter order in documentation Changed parameter order in documentation of findEssentialMat, because threshold and probability were switched. --- modules/calib3d/include/opencv2/calib3d.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/calib3d/include/opencv2/calib3d.hpp b/modules/calib3d/include/opencv2/calib3d.hpp index ddffffecd0..867bbc723c 100644 --- a/modules/calib3d/include/opencv2/calib3d.hpp +++ b/modules/calib3d/include/opencv2/calib3d.hpp @@ -1245,12 +1245,12 @@ same camera matrix. @param method Method for computing a fundamental matrix. - **RANSAC** for the RANSAC algorithm. - **MEDS** for the LMedS algorithm. +@param prob Parameter used for the RANSAC or LMedS methods only. It specifies a desirable level of +confidence (probability) that the estimated matrix is correct. @param threshold Parameter used for RANSAC. It is the maximum distance from a point to an epipolar line in pixels, beyond which the point is considered an outlier and is not used for computing the final fundamental matrix. It can be set to something like 1-3, depending on the accuracy of the point localization, image resolution, and the image noise. -@param prob Parameter used for the RANSAC or LMedS methods only. It specifies a desirable level of -confidence (probability) that the estimated matrix is correct. @param mask Output array of N elements, every element of which is set to 0 for outliers and to 1 for the other points. The array is computed only in the RANSAC and LMedS methods. -- GitLab