C# 中的边缘链接

发布于 2024-10-09 08:17:40 字数 120 浏览 1 评论 0原文

我已经使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一花一树开 2024-10-16 08:17:40

我可能会尝试霍夫变换;它并不快,但相当容易实现和使用。
它可以用来检测直线、圆、椭圆,但如果需要的话可以进一步推广。以下是圆形霍夫变换的示例。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文