【问题标题】:Automatically remove straight lines with Hough transform使用霍夫变换自动去除直线
【发布时间】:2018-11-17 01:43:12
【问题描述】:

我正在写一篇关于光学字符识别的论文。我的工作是从图像中正确分割文本字符。

问题是,这种语言的每个文本行都有单词,其中字符通常由直线连接。这些线条的粗细可能相同,也可能不同。

到目前为止,使用投影配置文件,我已经能够分割未连接到任何直线的字符。但是要分割由直线连接的字符,我必须删除这些线。我更喜欢使用霍夫变换来检测和移除这些线条(意思是在 BW 图像中,如果线条中的像素是黑色的,则将其设为白色)。

查看包含文本的示例图像: Sample Image

This 是使用投影轮廓从上图中分割出来的一条线。

These 是使用霍夫变换检测到的线。

霍夫变换的代码。使用This图片进行测试。

I = imread('line0.jpg');
%I = rgb2gray(I);
BW = edge(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,1,'threshold',ceil(0.3*max(H(:))));
x = T(P(:,2));
y = R(P(:,1));
plot(x,y,'s','color','blue');

% Find lines and plot them
lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7);
figure, imshow(I), hold on
grid on
max_len = 0;

for k = 1:length(lines)
    xy = [lines(k).point1;lines(k).point2];
    plot(xy(:,1),xy(:,2),'LineWidth',1,'Color','green');

    % plot beginnings and ends of lines
    plot(xy(1,1),xy(1,2),'o','LineWidth',2,'Color','red');
    plot(xy(2,1),xy(2,2),'o','LineWidth',2,'Color','blue');

    % 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

关于如何做到这一点的任何想法?任何帮助将不胜感激!

【问题讨论】:

  • 只需替换与行值匹配的图像值即可。

标签: matlab image-processing ocr image-segmentation hough-transform


【解决方案1】:

houghlines 开始,您只需将行的索引替换为白色(在本例中为 255)。您可能需要稍微调整一下填充,以去除一两个像素。

编辑:这是一个尝试确定填充的版本。

%% OCR
I = imread('CEBML.jpg');
BW = edge(I,'canny');
[H,T,R] = hough(BW);
P = houghpeaks(H,1,'threshold',ceil(0.3*max(H(:))));
x = T(P(:,2));
y = R(P(:,1));

% Find lines and plot them
lines = houghlines(BW,T,R,P,'FillGap',5,'MinLength',7);
subplot(2,1,1)
grid on
imshow(I)
title('Input')
hold on
px = 5; % Number of padding pixels to probe
white_threshold = 30; % White threshold
ln_length = .6; % 60 %
for k = 1:length(lines)
    xy = [lines(k).point1; lines(k).point2];
    buf_y = xy(1,1):xy(2,1); % Assuming it's a straight line!
    buf_x = [repmat(xy(1,2),1,xy(2,1) - xy(1,1)),xy(2,2)] +  [-px:px]';
    I_idx = sub2ind(size(I),buf_x, repmat(buf_y,size(buf_x,1),1));
    % Consider lines that are below white threshold, and are longer than xx
    % of the found line.
    idx = sum(I(I_idx) <= white_threshold,2) >= ln_length * size(I_idx,2);
    I(I_idx(idx,:)) = 255;

    % Some visualisation 
    [ixx,jyy] = ind2sub(size(I),I_idx(idx,:));
    plot(jyy,ixx,'.r');% Pixels set to white 
    plot(xy(:,1),xy(:,2),'-b','LineWidth',2);  % Found lines
end
subplot(2,1,2)
grid on
imshow(I)
title('Output')

【讨论】:

  • 嘿,Ash,这是一个不错的解决方案!但是有没有办法自动确定填充像素的数量或线条的粗细?这将非常有帮助,因为线条的粗细因字体而异。
  • 当然 - 编辑了答案。但这是假设线条总是笔直的。虽然同样的原则也可以扩展到其他线路!
猜你喜欢
  • 1970-01-01
  • 1970-01-01
  • 2013-03-09
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 1970-01-01
  • 2014-01-02
相关资源
最近更新 更多