匹配矩形线

时间:2013-12-21 22:52:06

标签: matlab image-processing

我正在尝试在Matlab中找到图像中的矩形。我使用houghlines函数来查找行。它找到带有点但不按顺序排列的线条。有没有办法找到匹配相同的矩形线?有些点很接近,但有些点与其他线的点有距离。

这个代码来自matlab的houghlines的例子:

I  = imread('e1.jpg');
I =rgb2gray(I);
rotI = imrotate(I,360,'crop');
BW = edge(rotI,'canny');
[H,T,R] = hough(BW);
imshow(H,[],'XData',T,'YData',R,...
            'InitialMagnification','fit');
xlabel('\theta'), ylabel('\rho');
axis on, axis normal, hold on;
P  = houghpeaks(H,20,'threshold',ceil(0.3*max(H(:))));
x = T(P(:,2)); y = R(P(:,1));
plot(x,y,'s','color','white');
% Find lines and plot them
lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7);
figure, imshow(rotI), hold on
max_len = 0;
for k = 1:length(lines)
   xy = [lines(k).point1; lines(k).point2];
   plot(xy(:,1),xy(:,2),'LineWidth',2,'Color','green');

   % Plot beginnings and ends of lines
   plot(xy(1,1),xy(1,2),'x','LineWidth',2,'Color','yellow');
   plot(xy(2,1),xy(2,2),'x','LineWidth',2,'Color','red');

   % Determine the endpoints of the longest line segment
   len = norm(lines(k).point1 - lines(k).point2);
   if ( len > max_len)
      max_len = len;
      xy_long = xy;
   end
end

% highlight the longest line segment
plot(xy_long(:,1),xy_long(:,2),'LineWidth',2,'Color','blue');

我因为声誉而无法添加图片,但在白色背景中有3个黑色矩形

0 个答案:

没有答案