Commit e89f4936 authored by Vadim Pisarevsky's avatar Vadim Pisarevsky

doxygenated calib3d module (C++ part only)

parent 266c4642
......@@ -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 );
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment