我有以下代码,我想检测圆圈。
img = cv2.imread("act_circle.png")
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
circles = cv2.HoughCircles(gray,cv2.CV_HOUGH_GRADIENT)
看起来它没有该属性,错误如下
'module' object has no attribute 'CV_HOUGH_GRADIENT'
有人知道这个隐藏参数在哪里吗?
谢谢