how to segment form?

1 view (last 30 days)
lamghari
lamghari on 27 Nov 2014
Commented: lamghari on 29 Nov 2014
I have a form table that contains characters. how to extract these characters?
  4 Comments
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

Image Analyst
Image Analyst on 28 Nov 2014
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
Image Analyst
Image Analyst on 29 Nov 2014
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 Read, Write, and Modify Image in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!