What algorithm is implemented in OpenCV contour detection? [closed]

余生长醉 提交于 2019-11-27 08:13:35

问题


Does anyone know which algorithm is implemented in the OpenCV library to perform the contour detection? Can you possibly give me a reference too?

Thanks.


回答1:


From the documentation to cv::findContours:

The function retrieves contours from the binary image using the algorithm [Suzuki85]. The contours are a useful tool for shape analysis and object detection and recognition.

And:

[Suzuki85] Satoshi Suzuki and others. Topological structural analysis of digitized binary images by border following. Computer Vision, Graphics, and Image Processing, 30(1):32–46, 1985.

The DOI for this paper is 10.1016/0734-189X(85)90016-7



来源:https://stackoverflow.com/questions/9334166/what-algorithm-is-implemented-in-opencv-contour-detection

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