doxygenated calib3d module (C++ part only)

pull/13383/head
Vadim Pisarevsky 15 years ago
parent 266c4642ea
commit e89f493697
  1. 6
      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<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 );

Loading…
Cancel
Save