how to use hough circles in cv2 with python?

I have the following code and I want to detect the circle. img = cv2.imread("act_circle.png") gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY) circles = cv2.HoughCircles(gray,cv2.CV_HOUGH_GRAD...