提取内部轮廓(HOLES)OpenCV

发布于 2024-12-24 22:36:25 字数 107 浏览 2 评论 0原文

是否有一种方法可以提取或显示孔,同时丢弃外部轮廓?

我可以通过使用 CV_RETR_EXTERNAL 仅显示外部轮廓,但似乎无法仅显示内部轮廓(孔)。

Isn't there a way to extract or display holes, while discarding exterior contours?

I can display exterior contours only, by using CV_RETR_EXTERNAL but there seems to be no way for displaying interior contours (holes) only.

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

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

发布评论

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

评论(1

锦欢 2024-12-31 22:36:25

您可以在 C 接口中使用类似的内容:

cvFindContours(tmp, storage, &srcSeq, sizeof(CvContour), 
                       CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);
        while (srcSeq)
        {
            if (CV_IS_SEQ_HOLE(srcSeq))
            {
                // do something with the hole
            }
            srcSeq = srcSeq->h_next;
        }

如果您使用的是 C++ 接口,则必须使用 FindContours() 中的层次结构参数来查看轮廓是否是孔。

You could use something like this with the C interface:

cvFindContours(tmp, storage, &srcSeq, sizeof(CvContour), 
                       CV_RETR_LIST, CV_CHAIN_APPROX_SIMPLE);
        while (srcSeq)
        {
            if (CV_IS_SEQ_HOLE(srcSeq))
            {
                // do something with the hole
            }
            srcSeq = srcSeq->h_next;
        }

If you are using the C++ interface then you will have to use the hierarchy parameter from FindContours() to see if a contour is a hole.

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