Closing a contour curve in OpenCV

*爱你&永不变心* 提交于 2019-11-30 12:22:40

Using PolyLine method to draw contours

cv2.PolyLine(img, points, is_closed=True, 255, thickness=1, lineType=8, shift=0)

Read the docs for further details: http://docs.opencv.org/2.4/modules/core/doc/drawing_functions.html

Mark answered if it resolved your problem. If not then let me know.

A little late, but I just had to deal with this myself. If you perform an opening operation (erosion followed by dilation) prior to the Canny edge detection, the edges you detect should be more continuous, resulting in better contours. This method appears to be fairly robust. I mentioned this in another post and posted a code sample as part of a recent question.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!