toufa
toufa

Reputation: 1

haw the function cvFindContours work?

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?

Upvotes: 0

Views: 658

Answers (1)

dom
dom

Reputation: 11962

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.

Upvotes: 1

Related Questions