Mobile OCR Engine for iPhone app [closed]
开发者_如何学编程
Questions asking us to recommend or find a tool, library or favorite off-site resource are off-topic for Stack Overflow as they tend to attract opinionated answers and spam. Instead, describe the problem and what has been done so far to solve it.
Closed 8 years ago.
Improve this questionI 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
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.
精彩评论