圆在数学上表示为\((x-x_{center})^2 + (y - y_{center})^2 = r^2\),其中\((x_{center},y_{center})\)是圆的中心,\(r\)是圆的半径。从方程中我们可以看到,我们有3个参数,因此我们需要一个用于霍夫变换的3D累加器,这将非常无效。因此,OpenCV 使用更巧妙的方法,即**霍夫梯度法**,它使用边缘的梯度信息。
import numpy as np
import cv2 as cv
img =
cv.imread(
'opencv-logo-white.png', cv.IMREAD_GRAYSCALE)
assert img is not None, "文件无法读取,请使用os.path.exists()检查"
param1=50,param2=30,minRadius=0,maxRadius=0)
circles = np.uint16(np.around(circles))
for i in circles[0,:]
void imshow(const String &winname, InputArray mat)
在指定的窗口中显示图像。
int waitKey(int delay=0)
等待按键按下。
void destroyAllWindows()
销毁所有HighGUI窗口。
CV_EXPORTS_W Mat imread(const String &filename, int flags=IMREAD_COLOR_BGR)
从文件中加载图像。
void cvtColor(InputArray src, OutputArray dst, int code, int dstCn=0, AlgorithmHint hint=cv::ALGO_HINT_DEFAULT)
将图像从一个颜色空间转换为另一个颜色空间。
void circle(InputOutputArray img, Point center, int radius, const Scalar &color, int thickness=1, int lineType=LINE_8, int shift=0)
绘制一个圆。
void HoughCircles(InputArray image, OutputArray circles, int method, double dp, double minDist, double param1=100, double param2=100, int minRadius=0, int maxRadius=0)
使用霍夫变换在灰度图像中查找圆。
void medianBlur(InputArray src, OutputArray dst, int ksize)
使用中值滤波器模糊图像。