如何使用cvBlob检测连通分量?
我想从图像中获取连接的组件,其中包含每个组件的边界像素信息,我如何使用 cvBlob 库来实现相同的功能..!!!
虽然我为此使用了 cvFindContours 但我没有得到想要的结果。
谢谢,
I want to get the connected component from an image with each components boundary pixels information,How can I use cvBlob library for the same..!!!
Though I have used cvFindContours forthis But I am not getting the desired result.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[这可能会帮助有类似问题的人]
如果您提供图片,您就会得到有关您问题的指导。很难想象你会得到什么样的照片。
函数 findContours() 可能会查找图像中的所有轮廓,包括您不需要的轮廓。您始终可以过滤掉某些太小或太大的轮廓。 :)
[This may help someone having similar problem]
If you provided a picture, you would have got the guidance on your problem. It's extremely hard to imagine what kind of picture you got.
The function findContours() may be finding all contours in your image, including those you do not need. You can always filter out certain contours as being too small, or too large. :)