This question already has answers here:
connected components in OpenCV

(6个答案)


6年前关闭。




OpenCV中是否有一个简单的功能完全可以在MATLAB中执行bwlabel的功能?

最佳答案

一种可能的替代方法是使用findContours and/or drawContours, as explained in the docs

这与bwlabel并不完全相同,但可能足够接近。

该文档包含此page demonstrating how to use these two functions together。生成的图像包含随机着色的轮廓。如果您使用索引(1,2,3 ...)代替随机颜色,并使用单通道灰度输出,则它将类似于bwlabel

关于c++ - 用于MATLAB BWLABEL的OpenCV替代品,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/20357337/

10-12 23:18