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 add Tesseract OCR to my environment variables?
- How can I use Tesseract OCR with Xamarin Forms?
- How do I install Tesseract-OCR using Yum?
- How can I use Tesseract OCR with Xamarin?
- How can I use Python to get the coordinates of words detected by Tesseract OCR?
- How do I set the Windows path for Tesseract OCR?
- How can I use Tesseract OCR with VBA?
- How do I use Tesseract OCR to extract text from a ZIP file?
- How do I extract text from an XML output using Tesseract OCR?
- How do I install Tesseract OCR on Windows?
See more codes...