What is the best PHP extract text from image class? #extract text from image
Edit
by Test User2 - 8 years ago (2016-09-03)
Extract text from images with accuracy
| I need a PHP function to extract text from images with accurate text. |
Ask clarification
1 Recommendation
PHP OCR Class: Recognize text & objects in graphical images
This is class can be used as a tool for optical character recognition.
It can recognize text in monochrome graphical images after a training phase. The training phase is necessary to let the class build recognition data structures from images that have known characters.
The training data structures are used during the recognition process to attempt to identify text in real images using the corner algorithm.
| by Manuel Lemos 26695 - 8 years ago (2016-09-04) Comment
There is an old pure PHP package for that here. It users neural networks to train the engine from sample images with letters. Then it can start recognizing those letters in images. |