2

我搜索了这个领域,发现一些论文提出了从图像中提取文本的新方法,但是我有一个由简单背景和一些文本组成的灰度图像。所以我需要一个每个人都可以使用的方法。请详细说明如何做到这一点。

4

1 回答 1

2

这里有一篇关于文本分割的文章。

文章_

这是一种将图像分割为 2 类的简单方法。

I = imread('...'); % Your board image
ThreshConstant = 1; % Try to vary this constant.

bw = im2bw(I , ThreshConstant * graythresh(I)); % Black-white image

SegmentedImg = I.*repmat(uint8(bw), [1 1 3]);

只需这样做imshow(bw);,您将获得一个通常分割良好的 2 色图像。

如果阈值太强,请尝试将 0.5 转为 1.5 ThreshConstant

于 2013-11-14T16:50:06.933 回答