图片上有曲线。我想找到包含曲线的圆的中心。
我尝试了opencv和hough圆变换,但没有结果。
#1 楼
您需要先提高图像的对比度,然后对其进行强烈过滤以消除噪点。由于圆是“粗的”(模糊的),因此可以在不破坏圆结构的情况下进行大量过滤。然后我将应用一些边缘检测算法来获取可以由圆弧霍夫变换处理的二进制边缘图像。
使用以下MATLAB命令:
% x is the input grayscale image. First we adaptively improve the contrast over the image
y= adapthisteq(x);
% next we use the Canny edge detector with a strong Gaussian lowpass filter
ee=edge(y, 'canny', [], 5);
评论
所有的曲线都是同心的吗?之间的间距可变吗?是的,他们是同心的。而且没有间距是恒定的。