Tesseract OCR for PHP (Image to characters)

0

I am using Tesseract OCR for PHP and Laravel 5.6, to extract characters from an image, but I do not use the library that I use this .

I put the facade, the code is as follows:

$filePath = public_path() . '/imagenes/text.png';
$dat = (new TesseractOCR($filePath))->run();
dd($dat);

The path of the image is fine but I do not get the letters of the text of the image, I get the following: " " .

    
asked by Juan Jose 12.04.2018 в 01:16
source

0 answers