detecting shapes that are placed on another shape
hi everyone.
i am trying to detect a shape like image below. i want to detect the circle shape and return its details. i use cvFindContours to do this. but this function return whole shape as result. how i can separate circle shape from remained area?
try houghcircles
... and use findContours instead of cvFindContours. The C++ API is way more stable!
I think before using cvFindContours ,first you use dilate and erode to clear curve.
That could work yes :)