如何使用 C# 中的单应性或其他方法获得匹配的 kyepoints 的内点/异常值?
我正在研究http://www.emgu.com/wiki/index.php/SURF_feature_detector_in_CSharp上提供的 SURF 示例。
我得到了匹配的功能。代码使用 HomographyMatrix(单应性)。我想区分内点和异常点。
在 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)
返回内点。我可以在 C# 中看到类似的代码吗?
同样,我只需要异常值/内部值分离。