C# 中的边缘链接
我已经使用 canny 运算符检测到灰度图像中的边缘。现在想要在边缘中拟合圆形/椭圆形。 我不知道 C# 中是否有任何方法来聚类/链接这些边缘,以便我可以找到 mAtlab 中众所周知的边缘边界和属性。
问候,
I have detected edges in gray image using canny operator. Now want to fit circle/ellipse in edges.
I donot know is there any way in c# to cluster/ linking these edges so that I can find edge boundaries and properties as well known in mAtlab.
regards,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我可能会尝试霍夫变换;它并不快,但相当容易实现和使用。
它可以用来检测直线、圆、椭圆,但如果需要的话可以进一步推广。以下是圆形霍夫变换的示例。
I might try the Hough transform; it's not fast, but fairly easy to implement and use.
It could be used to detect lines, circles, ellipses, but can be generalized further if you have to. Here is an example of the Circular Hough Transform.