I have a form table that contains characters. how to extract these characters?

4 个评论

You forgot to attach your table or image, so there's nothing we can suggest (yet).
sorry attached image
Thorsten
Thorsten 2014-11-28
编辑:Thorsten 2014-11-28
What do you mean by "extract these characters"? Select the images of the characters or do an OCR (optical character recognition) or something else?
select the images of the characters

请先登录,再进行评论。

 采纳的回答

First I'd sum the image vertically and horizontally and look for the rows and columns where the grid lines are. Then call imcrop.
[rows, columns, numberOfColorChannels) = size(grayImage);
horizontalProfile = sum(grayImage, 1);
verticalProfile = sum(grayImage, 2);
binaryHoriz = horizontalProfile < someNumber;
and so on. Give it a try.

3 个评论

How to calculate someNumber?
Plot the profiles and you'll be able to tell what the number is. It might be like half the max value or something.
ok thank you very much

请先登录,再进行评论。

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Convert Image Type 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by