Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Mobile OCR Engine for iPhone app [closed]

Tags:

iphone

ocr

I am developing an app in which I have to make use of an OCR Engine can you please help me choose the best one in this regards. I have to extract text from images.

I heard of abby. Is it the best ?????

Suggest if some other choice is there

Thnx in advance

like image 866
Ankit Sachan Avatar asked Nov 12 '09 13:11

Ankit Sachan


People also ask

Is there an OCR app for iPhone?

Adobe Scan – iOS Available on both iOS and Android, Adobe Scan is one of the best out there in the OCR market.

What is Leadtools OCR?

LEADTOOLS OCR App The LEADTOOLS OCR Application can perform Optical Character Recognition (OCR) on images, extract text from images, and convert images to various document formats with superior accuracy and speed. OCR, extract, and copy the text from an image for editing and sharing.

Does iPad Pro have OCR?

OCR (Optical Character Recognition) is a technology that makes computers recognise printed text characters and handwritten ones. You can take a photo or scan a document to convert it to text. You can write with your Apple Pencil on your iPad and convert it to text.


1 Answers

There are many libraries available for extracting text from images.

Tesseract and Abby are the best OCR SDK's I have used. The main advantage with Abby SDK is that its results are nice as compare to Tesseract . And the only disadvantage with it is that it is purchasable . While the main advantage in Tesseract is that it is open source and you can improve its result by using any image processing library.

1) Abby - https://github.com/abbyysdk/ocrsdk.com it uploads the image to its server, converts image to text and downloads the result

2) Tesseract - https://github.com/nolanbrown/Tesseract-iPhone-Demo/tree/master/OCRDemo It converts the image to text using tessrect sdk. Not as accurate result as Abby but does not require internet connection.

3) Tesseract + OpenCV - https://github.com/pablosproject/iPhone-OCR-Tesseract-and-OpenCV Probably the best sdk I found so far to read image without internet connection. Advantage of this code is it integrates OpenCV too, thus you can add algorithms like blog extraction algorithm and hough transform to increase the accuracy of result.

I hope it helps.

like image 178
Nishant Tyagi Avatar answered Sep 23 '22 21:09

Nishant Tyagi