C# 中的单应性、内点/ Emgu CV/ SURF
如何使用 C# 中的单应性或其他方法获取匹配关键点的内点/离群值?
我正在研究 http://www.emgu.com/wiki/index 上提供的 SURF 示例.php/SURF_feature_ detector_in_CSharp。
我得到了匹配的功能。代码中使用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# 中看到类似的代码吗?
同样,我只需要分离异常值/内部值。
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.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您想要分离内点/离群点并且您已经有了匹配项,请尝试以下操作:
请注意,我对点进行了归一化,因此单应性估计更加稳健。
If you want inliers/outliers separation and you already have your matches try this:
Note that I normalized the points so Homography estimation is more robust.
您的问题不太清楚,因为如果您使用 emgucv 单应性计算,则如果有超过 10 个匹配对,则使用使用 RANSAC 的
CameraCalibration.FindHomography()
函数来估计。我正在为我的论文研究这些主题,因此我将发布一些相关代码,这些代码应该完全回复您并为其他人服务。
Your question is not so clear because if you are using emgucv homography computation is estimated using
CameraCalibration.FindHomography()
function using RANSAC if there are more than 10 matching pairs.I'm working on these topics for my thesis so i will post some relevant code that should fully reply to you and serve also to others.
C# 中的
cvFindFundamentalMat
签名如下所示:参数默认值是在 C# 4.0 中引入的。我假设 Emgu CV 还不支持 .Net 4.0(如果我错了,请纠正我),因此可以进行提供默认值的重载:
注意:正如评论者也指出的那样,很难确定您的内容重新要求。在这里,我刚刚猜测您的一些问题是提供的 C++ 代码在 C# 中的样子。
The signature of
cvFindFundamentalMat
in C# would look like this:Parameter defaults was introduced in C# 4.0. I assume that Emgu CV does not support .Net 4.0 yet (correct me if I'm wrong), thus an overload providing the default values could be made:
Note: as commenters also have stated, it is hard to be sure what you're asking for. Here, I have just guessed that some of your question is how the provided C++ code would look like in C#.