Is there a way to get Uncertainty/Vote output in Python OpenCV HoughCircles function

Viewed 691

I'm writing a code for circle detection in an image, where there are different types of circles (partial circles). I am using HoughCircles function in OpenCV python to detect the circles. But few partial circles are also detected along with the complete ones. Is there a way to know the Uncertainty value/votes for each detection.

A similar question is asked in the following link, but I cannot use it in OpenCV python to get the vote value.

enter image description here

The left circle is a complete circle and the right one is a semi-circle(circles are slightly shifted because of blurring and pre-processing). I want to differentiate between the two using the vote value.

I am using Python 3.6.10 and OpenCV 4.2.0

0 Answers
Related