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 do I set the Windows path for Tesseract OCR?
- How do I install and use language packs with Tesseract OCR?
- How can I integrate Tesseract OCR into a Unity project?
- How can I use Tesseract OCR to recognize Japanese text?
- How can I use Tesseract OCR to recognize Russian text?
- How can I use Tesseract OCR to get the position of text?
- How can I decide between Tesseract OCR and TensorFlow for my software development project?
- How do I install Tesseract OCR on Windows?
- How do I use the tesseract OCR Windows exe?
- How can I use tesseract OCR to scale my images?
See more codes...