Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Optical character recognition on the iPhone

Is it possible on an iPhone app to take a picture and extract an string from the picture? We'd like to make our app to look for a serial number on a database (very long number) without the user having to type it.

Is there any Cocoa/Objective-C API for this or any C/C++ library that can be used in an iPhone app?

Thanks in advance!

like image 483
Enmanuel G Avatar asked Oct 14 '22 22:10

Enmanuel G


2 Answers

You can have a look at the tesseract-ocr project. It's not actually made to use on an iPhone but I believe others have made great use of it on the iPhone.

Here is a demo that makes use of the tesseract ocr engine.

like image 169
epatel Avatar answered Oct 18 '22 02:10

epatel


I was looking for something similar and came across ABBYY's mobileOCR solution I've not used it yet and have no idea how much it is but you should be able to integrate it into your app by all accounts.

like image 31
earnshavian Avatar answered Oct 18 '22 03:10

earnshavian