how to segment form?

1 visualizzazione (ultimi 30 giorni)
lamghari
lamghari il 27 Nov 2014
Commentato: lamghari il 29 Nov 2014
I have a form table that contains characters. how to extract these characters?
  4 Commenti
Thorsten
Thorsten il 28 Nov 2014
Modificato: Thorsten il 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 il 28 Nov 2014
select the images of the characters

Accedi per commentare.

Risposta accettata

Image Analyst
Image Analyst il 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 Commenti
Image Analyst
Image Analyst il 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 il 29 Nov 2014
ok thank you very much

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Read, Write, and Modify Image in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by