OpenCV(C语言)在白色区域周围画圆

发布于 2024-08-25 18:07:35 字数 204 浏览 3 评论 0原文

如何使用 OpenCV(C 语言)在图像文件中的空白处画一个圆?

图片示例:

“替代文本”

多谢!

how can I draw a circle around a white space in a image file with OpenCV (C language)?

image example:

alt text

thanks a lot!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

倾城泪 2024-09-01 18:07:35

首先,您可以使用 FindContours 查找图像中的所有(在您的情况下为 1)轮廓(斑点/区域),然后您可以在轮廓周围绘制一个圆或任何其他您想要的形状。

编辑:要绘制一个圆圈,您可以使用

First you can use FindContours to find all (in your case 1) contours (blobs/regions) in the image, then you can draw a circle or any other shape you want around the contour.

Edit: To draw a circle you can use Circle.

初见你 2024-09-01 18:07:35

您可以先计算矩,然后从中获取圆信息。

you can compute moments first, then get circle info from it.

沦落红尘 2024-09-01 18:07:35

你实际上并不需要 opencv,你只需循环图像并计算白色斑点周围的边界框,获取中心,圆的半径就是从中心到任意角的长度。然后用GDI或者其他东西来画你的圆。

You don't really need opencv for that, you just loop over your image and calculate the bounding box surrounding the white blob, get the center and the radius of your circle is the length from the center to any corner. Then just use GDI or something to draw your circle.

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