tesseract-ocrHow can I set up tesseract OCR with GPU acceleration?
-
Install tesseract-ocr with GPU acceleration enabled:
$ git clone https://github.com/tesseract-ocr/tesseract
$ cd tesseract
$ ./autogen.sh
$ ./configure --enable-gpu --with-cuda-dir=/usr/local/cuda --with-cudnn-dir=/usr/local/cudnn
$ make
$ sudo make install
- Test GPU acceleration:
$ tesseract --list-langs
Output example
List of available languages (4):
eng
osd
- Set environment variables:
$ export TESSERACT_ENABLE_GPU=1
$ export TESSERACT_GPU_EXECUTABLE=/usr/local/cuda/bin/nvcc
- Run tesseract with GPU acceleration:
$ tesseract --oem 1 --psm 3 --tessdata-dir /usr/local/share/tessdata <image> <output>
-
Check the GPU usage with
nvidia-smi
command. -
For more information, see the Tesseract OCR documentation.
More of Tesseract Ocr
- How can I use Tesseract to perform zonal OCR?
- How do I use Tesseract OCR to extract text from a ZIP file?
- How can I use Tesseract OCR in a Delphi application?
- How do I use tesseract-ocr with yocto?
- How do I add Tesseract OCR to my environment variables?
- How do I use Tesseract OCR on macOS?
- How do I install Tesseract-OCR using Yum?
- How can I use Tesseract OCR to recognize handwritten text?
- How do I extract text from an XML output using Tesseract OCR?
- How do I set the Windows path for Tesseract OCR?
See more codes...