connected components in 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 中的连接组件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:OpenCV 中的连接组件
基础教程推荐
- C++,'if' 表达式中的变量声明 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01