OpenCV 中的连接组件

connected components in OpenCV(OpenCV 中的连接组件)
本文介绍了OpenCV 中的连接组件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

问题描述

我正在寻找一个 OpenCV 函数,它可以找到连接的组件并对其执行一些任务(例如获取对象中的像素数、轮廓、像素列表等.)

I am looking for an OpenCV function that can find connected components and perform a few tasks on them ( like getting the number of pixels, contour, list of pixels in the object etc.. )

OpenCV(C++)有没有类似于MatLab的regionprops的函数?

Is there a function of OpenCV (C++) that is similar to MatLab's regionprops ?

推荐答案

从 3.0 版本开始,OpenCV 有了 connectedComponents 函数.

Starting from version 3.0, OpenCV has connectedComponents function.

这篇关于OpenCV 中的连接组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

How to enable C++11 in Qt Creator?(如何在 Qt Creator 中启用 C++11?)
How to convert QString to std::string?(如何将 QString 转换为 std::string?)
Qt: can#39;t find -lGL error(Qt:找不到 -lGL 错误)
Serialization with Qt(使用 Qt 进行序列化)
Non-blocking worker - interrupt file copy(非阻塞工作者 - 中断文件复制)
How to link opencv in QtCreator and use Qt library(如何在 QtCreator 中链接 opencv 并使用 Qt 库)