HoughCircles Parameters to recognise balls
问题 After processing an image by converting it to grey scale and then blurring it, I'm trying to apply a Hough Circle Transformation with these parameters: CV_HOUGH_GRADIENT dp = 1 min_dist = 1 param_1 = 70 param_2 = 100 min_radius = 0 max_radius = 0 Here is one of the many images I've tried: http://i.stack.imgur.com/JGRiM.jpg But the algorithm fails to recognise the ball even with relaxed parameters. (When I try it with an image of a circle created in GIMP it works fine) 回答1: I agree with krzych