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

4 Comments

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

Sign in to comment.

 Accepted Answer

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 Comments

lamghari
lamghari on 28 Nov 2014
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.
lamghari
lamghari on 29 Nov 2014
ok thank you very much

Sign in to comment.

More Answers (0)

Categories

Find more on Convert Image Type in Help Center and File Exchange

Asked:

on 27 Nov 2014

Commented:

on 29 Nov 2014

Community Treasure Hunt

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

Start Hunting!