本文介绍了在OpenCV中闭合轮廓曲线的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用OpenCV(Canny + findCountours)查找对象的外部轮廓.绘制的曲线通常几乎是闭合的,但不是完全闭合的.我想关闭它-找到它所限制的区域.
I'm using OpenCV (Canny + findCountours) to find external contours of objects. The curve drawn is typically almost, but not entirely, closed. I'd like to close it - to find the region it bounds.
我该怎么做?
考虑的事情:
- 膨胀-我所看到的示例在Canny之后展示了这一点,尽管在我看来,在findContours之后执行此操作更有意义
- 凸包-可能有用,尽管我确实试图完成一条曲线
- 形状简化-相关,但不完全是我想要的
推荐答案
使用PolyLine方法绘制轮廓
Using PolyLine method to draw contours
cv2.PolyLine(img, points, is_closed=True, 255, thickness=1, lineType=8, shift=0)
阅读文档以获取更多详细信息: http://docs. opencv.org/2.4/modules/core/doc/drawing_functions.html
Read the docs for further details: http://docs.opencv.org/2.4/modules/core/doc/drawing_functions.html
Mark回答是否可以解决您的问题.如果没有,那么让我知道.
Mark answered if it resolved your problem. If not then let me know.
这篇关于在OpenCV中闭合轮廓曲线的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!