如何在轮廓上绘制方框(C++,OpenCV)

发布于 2024-12-17 03:14:34 字数 415 浏览 1 评论 0原文

我想在这样的轮廓上画一个框

https://i.sstatic.net/gyAGY.jpg

我发现使用此代码绘制轮廓

vector < vector<Point> > contours;
findContours(Iat, contours, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);

以及如何使用 rectangle 指令绘制一个盒子

我不知道如何使用 vector 矢量<点> >轮廓 有人可以描述一下这个吗

?非常感谢。

I want to draw a box over a contour like this

https://i.sstatic.net/gyAGY.jpg

I find contour with this code

vector < vector<Point> > contours;
findContours(Iat, contours, CV_RETR_CCOMP, CV_CHAIN_APPROX_SIMPLE);

And how to draw a box with rectangle instruction

I don't know how to use vector < vector<Point> > contours Can someone describe this

Thanks is advanced.

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

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

发布评论

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

评论(1

ら栖息 2024-12-24 03:14:34

您可以使用boundingRect方法:

Rect boundingRect(InputArray points)

Parameters: points – Input 2D point set, stored in std::vector or Mat.

该函数计算并返回指定点集的最小右上边界矩形。

这样您就可以使用您想要的方法了。

You can use the boundingRect method:

Rect boundingRect(InputArray points)

Parameters: points – Input 2D point set, stored in std::vector or Mat.

The function calculates and returns the minimal up-right bounding rectangle for the specified point set.

With this you will be able to use your desired method.

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