Are there any free OCR libraries that work with PHP or Python on a Linux server? The idea is to be able to upload an image and pull out characters from it, or allow users to "draw characters", and parse them out of said image.
closed as not constructive by George Stocker♦ Nov 23 '12 at 4:06
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Since you're on a Linux box, I would highly recommend Google's open source project ocropus. It's not PHP, but I think it will be your best option. Of course you can call it from within PHP via
There is also another open source project, tesseract. I've used this in the past as well and have been pleased with the results. Includes training, limiting your alphabet, etc. |
||||
|
Have you seen phpOCR classes of Andrey Kucherenko ? http://www.phpclasses.org/package/2874-PHP-Recognize-text-objects-in-graphical-images.html It's an old article but may help you. |
||||
|