我得到了很多使用的圖像Hough變換圓檢測算法中圈。如何使這種檢測更準確?檢測哈夫圓檢測刪除不必要的圈子
圖像顯示圓。
原始圖片
下面的代碼是用來
import cv2
import numpy as np
img = cv2.imread('test_c.jpg',0)
img = cv2.medianBlur(img,5)
cimg = cv2.cvtColor(img,cv2.COLOR_GRAY2BGR)
circles=cv2.HoughCircles(img,cv2.HOUGH_GRADIENT,1,20,param1=50,param2=30,minRadius=0,maxRadius=0)
circles = np.uint16(np.around(circles))
for i in circles[0,:]:
# draw the outer circle
cv2.circle(cimg,(i[0],i[1]),i[2],(0,255,0),2)
# draw the center of the circle
cv2.circle(cimg,(i[0],i[1]),2,(0,0,255),3)
cv2.imshow('detected circles',cimg)
cv2.waitKey(0)
cv2.destroyAllWindows()`
你在哪裏複製代碼?你甚至讀過它嗎?你認爲這些參數有什麼好處? minRadius,maxRadius? – Piglet