1

我想检测文本文档中的行。这是为了使边缘检测任务更容易使用该功能而被侵蚀的原始图像。erode这是被侵蚀的图像

现在检测我使用的行houghlines,并在我的脚本文件中使用以下代码。

I  = imread('c:\new.jpg');
rotI = imrotate(I,33,'crop');
bw_I = rgb2gray(rotI);
BW = edge(bw_I,'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,5,'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');

这产生了这个结果。现在我知道相交点是检测到的线。我想要的是以某种方式将检测到的这些线条显示在原始图像上,例如突出显示线条或给它们加下划线。这可能吗?我会使用哪个功能?

编辑:我想说的是,如何将检测到的线(相交点)从最后一个结果转换为更清晰的结果。

4

1 回答 1

2

您想应用于函数调用imshow的结果。edge

Matlab 文档的这一部分解释了您要完成的工作:

  1. 将图像读入 MATLAB 工作区。

    I  = imread('circuit.tif');
    
  2. imrotate对于此示例,使用该函数 旋转和裁剪图像。

    rotI = imrotate(I,33,'crop');
    fig1 = imshow(rotI);
    
  3. edge使用函数 查找图像中的边缘。

    BW = edge(rotI,'canny');
    figure, imshow(BW);
    

这是您所追求的第三步。您已经运行了该edge功能。
现在,剩下的就是BWimshow.

于 2013-08-15T17:38:19.153 回答