Kshitij Patil
Kshitij Patil

Reputation: 91

Difference Between Hough Circle and minEnclosed Circle in OpenCV to detect circles?

I just want to know what will the difference be if instead of using hough circle to detect a circle, I find a contour and using minEnclosed circle find the circle? Which one will be more accurate? As far as I can understand both of them should give me the same thing. Can anyone help clarify

Upvotes: 0

Views: 630

Answers (1)

Ziri
Ziri

Reputation: 736

minEnclosed circle will enclose all outlier points in your connected component (blob or edge) while Hough circle searches for the best fit using voting algorithm.

So for searching circles; Hough circle is more accurate.

Edit :

enter image description here

Upvotes: 3

Related Questions