I able to detect circle center using hough circle, but i need to find the circle "center coordinates" using x and y in python. Anyone can explain it with the code? I am newbie in programming especially in python. Thanks.
Asked
Active
Viewed 2,146 times
0
-
Possible duplicate of [HoughCircles circle detection using opencv and python-](http://stackoverflow.com/questions/26254287/houghcircles-circle-detection-using-opencv-and-python) – Miki Apr 18 '16 at 07:01
-
@Miki i mean that i would find the x and y coordinates.. I succes to detect the circle center.. but, still cannot show up x and y in program.. thanks.. – Billy Satrio Wibowo Apr 19 '16 at 18:09
-
At the end of the script there is an example on how to access x (`i[0]`) and y (`i[1]`) coordinates – Miki Apr 19 '16 at 18:37
-
okay, got it.. Sorry not notice that thing at all.. Thank you @Miki – Billy Satrio Wibowo Apr 20 '16 at 18:57