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