How to use the OCR (TesseractOCR) php library
问题 I had clone git library of OCR using this link . git clone git://github.com/thiagoalessio/tesseract-ocr-for-php.git then simply i include the required file by following this example here is the example code which i m trying to run require_once './src/TesseractOCR.php'; $tesseract = new TesseractOCR('text.png'); $text = $tesseract->recognize(); echo "The recognized text is:", $text; But always it fires a fatal Error Fatal error: Uncaught Error: Call to undefined method TesseractOCR::recognize(