概述图像中的缺陷?

时间:2012-03-15 09:21:57

标签: image image-processing image-segmentation

我有以下图像,我已应用双边过滤并从原始图像中删除

是否可以如图所示勾勒出玻璃缺陷

enter image description here

申请霍夫后,我得到以下结果并不完美:/

enter image description here

我的matlab代码:

  im = imread('C:\Users\SUJIT\Desktop\image003.jpg');
im=rgb2gray(im);
h = fspecial('gaussian', size(im), 1.0);
g = imfilter(im, h);

im=im2double(g);

im=imadjust(im);
imgauss = imfilter(im, fspecial('gaussian',[7 7], 6),'conv');
imbi = bilateralfilter(im, [5 5], 3, 3);
imbi= im - imbi;


 imshow(imbi,[]); title('Bilateral Filted Image');

I = imcrop(imbi, [30 30 450 350]);
J = imfilter(I, fspecial('gaussian', [17 17], 5), 'symmetric');
BW = edge(J, 'canny');

%# Hough Transform and show matrix
[H T R] = hough(BW);
imshow(imadjust(mat2gray(H)), [], 'XData',T, 'YData',R, ...
       'InitialMagnification','fit')
xlabel('\theta (degrees)'), ylabel('\rho')
axis on, axis normal, hold on
colormap(hot), colorbar

%# detect peaks
P  = houghpeaks(H, 10);
plot(T(P(:,2)), R(P(:,1)), 'gs', 'LineWidth',2);

%# detect lines and overlay on top of image
lines = houghlines(BW, T, R, P);
figure, imshow(I), hold on
for k = 1:length(lines)
    xy = [lines(k).point1; lines(k).point2];
    plot(xy(:,1), xy(:,2), 'g.-', 'LineWidth',2);
end
hold off

请帮助我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

根据一张图片而不是其他信息给出一般答案有点困难,但我可以根据您的样本图片给出具体答案。

假设您想要找到的是图像中间的垂直模糊线,这是我的方法。我不会详细介绍具体的实施细节,而只是概述我将如何做到这一点。

  1. 找到窗户。有多种方法可以解决这个问题。一些想法是找到角落,或找到矩形结构本身。霍夫变换是一种可能的工具。

  2. 对于每个窗口,检查其中是否有垂直结构。