The cvFindFundamentalMat signature in C # will look like this:
int cvFindFundamentalMat(CvMat points1, CvMat points2, CvMat fundamentalMatrix, CV_FM method, double param1, double param2, CvMat status);
The default setting was introduced in C # 4.0. I assume that Emgu CV does not support .NET 4.0 yet (correct me if I am mistaken), so one could do an overload providing default values:
int cvFindFundamentalMat(CvMat points1, CvMat points2, CvMat fundamentalMatrix) { return cvFindFundamentalMat(points1, points2, fundamentalMatrix, CV_FM.CV_FM_RANSAC, 1.0, 0.99, null); }
Note: as commentators noted, itβs hard to be sure what you are asking. Here, I only guessed that some of your questions were about how the presented C ++ code would look in C #.
source share