How can I get inliers/outliers of matched kyepoints using homography or some other method in C#?
I am working on SURF example provided on http://www.emgu.com/wiki/index.php/SURF_feature_detector_in_CSharp.
I got matchedFeature. Code uses HomographyMatrix (homography). I want to separate inliers and outliers.
In C++:
bgroup({findFundamentalMat})
int cvFindFundamentalMat(const CvMat* points1, const CvMat* points2,
CvMat* fundamentalMatrix, int method=CV_FM_RANSAC, double param1=1.,
double param2=0.99, CvMat* status=NULL)
returns inliers. Can I see similiar code also in C#.
Again I just need outliers/inliers separation.