doxygenated calib3d module (C++ part only)

This commit is contained in:
Vadim Pisarevsky 2010-05-26 08:40:25 +00:00
parent 266c4642ea
commit e89f493697

View File

@ -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<uchar>& 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<Vec3f>& lines );