Questions tagged [houghcircles]
4 questions
0
votes
0 answers
OpenCV HouchCircles Overshoot Circles Bigger than the Image
I'm doing a simple circle detection with HoughCircles, for a clock, no matter how I change the parameters, the circle detection never works correctly, I tried to extra blurring and no use. The input image is this:
The output circle is this :
The…

Mohamed Abduljawad
- 149
- 4
0
votes
1 answer
Circle detection on craters by Hough OpenCV - Python
I am trying to detect the circles on some lunar craters images. Here are some examples:
After binarization, closing operation and removing noise, I ended up with such results:
I am now trying to fit the circles to the binarized images. I've…

KS0232
- 157
- 2
- 9
0
votes
0 answers
How can I detect all the circles which have radius r=2 or r=3, gone through at least 3 point by using HoughCircles in OpenCV
I have a 17x18 image:
Mat src = (Mat_(17, 18) <<
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
…

Hoang Thanh The
- 1
- 1
0
votes
0 answers
How to detect the inner radius and outer radius of this circle in python?
i want to detect the radius of two circles in mask image,
but cv2.HoughCircles can not detect these two circles.
what should i do? thanks in advance.
here is the code:
import cv2
import numpy as np
track_win = 'Tracking'
def nothing(x):
pass
…

12343954
- 2,451
- 3
- 18
- 18