0

I'm using the cvFindContours function in C++ and OpenCV.

I have to make a documentation of the function I'm using, can someone tell me how this function works, which method for find contours uses and if it possible some theory at the basis of the function?

Dre
  • 4,298
  • 30
  • 39
toufa
  • 1
  • 1
    possible duplicate of [OpenCV Contour Detection which implemented algorithm?](http://stackoverflow.com/questions/9334166/opencv-contour-detection-which-implemented-algorithm) – karlphillip Jun 19 '12 at 13:45

1 Answers1

1

As mentioned in the docs: "The function retrieves contours from the binary image using the algorithm Suzuki85."

For mor information you can read the whole paper here.

dom
  • 11,894
  • 10
  • 51
  • 74