CVAPI(CvSeq*) cvHoughCircles( CvArr* image, void* circle_storage, int method, double dp, double min_dist, double param1 CV_DEFAULT(100), double param2 CV_DEFAULT(100), int min_radius CV_DEFAULT(0), int max_radius CV_DEFAULT(0));
param1 The first method-specific parameter. in the case of CV HOUGH GRADIENT it is the higher
threshold of the two passed to cv::Canny edge detector (the lower one will be twice smaller)
param2 The second method-specific parameter. in the case of CV HOUGH GRADIENT it is the
accumulator threshold at the center detection stage. The smaller it is, the more false circles
may be detected. Circles, corresponding to the larger accumulator values, will be returned
first
minRadius Minimum circle radius
maxRadius Maximum circle radius