I'm creating an iphone app with OCR scanning feature.
I'm using Tesseract api.
It is working fine and got the text from the image taken.
Now I need to separate each text with respect to name, address, phone number etc.

How can I implement, I mean which logic can I use to separate each text content?

link|improve this question

58% accept rate
It's difficult to provide a clear answer to your question since you have not described the kind of format the input is in, e.g. are you scanning business cards, letter heads, envelopes, strict formatted text, etc.? – Claus Broch Nov 3 '11 at 9:41
hi, thanks for your reply. I am scanning business cards. And need to separate first name, last name, address, phone numbers, etc. – John Nov 3 '11 at 9:46
feedback

1 Answer

up vote 1 down vote accepted

Business card reading requires a lot of heuristics on top of OCR. There are some gereal rules for designing business cards, for example, First Name and Last Name have a larger font size, staff position is usually placed near name, phone number can contain braces, plus, minus signs and digits, address usually has commas and zip code, email has '@' sign. So it's about a huge number of rules and patterns.

If you are planning a commercial app, have a look at ABBYY Mobile OCR Engine, it has built-in business card reader functionality. It's not affordable for free-to-use programs, but when it comes to business - it can add a good value to your product. Trial can be requested here.

link|improve this answer
thanks for your reply, that is a good suggestion. – John Nov 4 '11 at 7:15
but is it possible to integrate the features to our app? i mean, if I want to add ABBYY features to my app and scan the card then do some other tasks with the details? Would they allow? – John Nov 4 '11 at 7:20
I beleive that is the main point of SDK - using 3rd party technologies in your app. ABBYY Mobile OCR Engine gives you the ability to add OCR to your application, built-in business card reader is just a feature for your convinience and a common task among developers. – Nikolay Nov 7 '11 at 8:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.