In this book and this pdf I found a simple "edge following algorithm". This algorithm takes a seed-point on a edge as argument. Then the edge is tracked around the object until the seed-point is reached again. Is there any algorithm available to do this in OpenCV? Why is it so hard to find anything like this in other Threads. For me the idea to follow an edge seems reasonable. Are there big problems with this technique I don't see yet?
Asked
Active
Viewed 812 times
0
-
What's wrong with findContours with CV_CHAIN_APPROX_NONE? – Miki Jun 29 '15 at 13:24
-
Tell me if I totally missunderstood it. What I am looking for is a function that takes a seed-point on an edge around an object as argument and then follows the contour. That should happen not happen on a binary image but on a grayscale image. Is that possible with CV_CHAIN_APPROX_NONE? – Oliver Wilken Jun 30 '15 at 02:02