Question

As you can see in the image, I would like to compare these contours.

contours

I need my OpenCV program to return TRUE when of these contours are compared to each other. They all kind off look the same but as you can see they are not exactly the same.

The result you see here is what I have returned from the function findContours.

So I am looking for the right approach for similarity for these contours.

Any help would be amazing.

Thank you very much in advance.

Was it helpful?

Solution

Take a look at cvMatchShapes() (which used to be call cvMatchContours()).

OTHER TIPS

To use the matchShapes() function you should pass vector<Point>, vector<Point> as arguments. So not contours container as you do, but particular contours from it. Shapes you are trying to compare should be one contour.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top