Category Archive For "OCR Using CMD"
Run command prompt commands from PHP page
In this video I have shown how you can run command prompt commands from PHP page. shell_exec(‘ ‘) can be used for executing cmd commands from php page. The below image shows the ipconfig/all command executed from my pc. We can run the same command from PHP page. The code is as below. <?php $out=shell_exec(‘ipconfig/all’); …
Continue reading
Convert image to text using CMD Command Prompt, Tesseract Optical Character Recognition (OCR)
Here is the steps you need to convert the image to text using CMD. See OCR Java Web Project here. 1.Download and Install the Tesseract ‘tesseract-ocr-setup-3.02.02.exe’. You can download that in the below link. Download tesseract-ocr-setup files here Install in any location you want, Eg. C:\OCR 2.After installing verify all the below files are available in …
Continue reading