diff --git a/modules/calib3d/include/opencv2/calib3d/calib3d.hpp b/modules/calib3d/include/opencv2/calib3d/calib3d.hpp index 162a2cdb24..2549676f6b 100644 --- a/modules/calib3d/include/opencv2/calib3d/calib3d.hpp +++ b/modules/calib3d/include/opencv2/calib3d/calib3d.hpp @@ -624,17 +624,17 @@ enum FM_RANSAC = 8 //!< RANSAC algorithm }; -// finds fundamental matrix from a set of corresponding 2D points +//! finds fundamental matrix from a set of corresponding 2D points CV_EXPORTS Mat findFundamentalMat( const Mat& points1, const Mat& points2, vector& mask, int method=FM_RANSAC, double param1=3., double param2=0.99 ); -// finds fundamental matrix from a set of corresponding 2D points +//! finds fundamental matrix from a set of corresponding 2D points CV_EXPORTS Mat findFundamentalMat( const Mat& points1, const Mat& points2, int method=FM_RANSAC, double param1=3., double param2=0.99 ); -// finds coordinates of epipolar lines corresponding the specified points +//! finds coordinates of epipolar lines corresponding the specified points CV_EXPORTS void computeCorrespondEpilines( const Mat& points1, int whichImage, const Mat& F, vector& lines );