This is a collection of frequently asked questions and the answers, or pointers to them for Tesseract 4. Also see Common errors and information for their resolution.
For the older version of the FAQ pertaining to Tesseract 2.0x, 3.0x and 4.00.00alpha, please see FAQ Old.
- Tesseract 4.0.0 and later versions
- How do I get Tesseract?
- Running Tesseract
- How do I run Tesseract from the command line?
- How to process multiple images in a single run?
- How to OCR single page of a multi-page tiff?
- How to OCR streaming images to pdf using Tesseract?
- How can I make the error messages go to tesseract.log instead of stderr?
- How can I suppress tesseract info line?
- How do I use Tesseract using the API?
- There are inconsistent results from tesseract when the same TessBaseAPI object is used for decoding multiple images.
- How do I improve OCR results?
- Can I increase speed of OCR?
- How can I try the next version?
- How do I compare different versions of Tesseract
- Training
- Miscellaneous
See Tesseract Wiki Home page for details.
See Tesseract man page for the list of languages and scripts supported by Tesseract 4.0.0.
See the Tesseract Wiki Data Files page for information regarding the three different types of language models available for Tesseract 4.0.0.
User contributed language models are linked from Data Files Contributions.
The files should be installed in /usr/share/tesseract-ocr/4.00/tessdata
(on Ubuntu).
If you get an error message saying eng.traineddata not found, try setting TESSDATA_PREFIX=/usr/share/tesseract-ocr/4.00/tessdata
and all will be good.
- txt
- hocr
- tsv
- pdf with text layer only
Tesseract’s standard output is a plain txt file (UTF-8 encoded, with ' as end-of-line marker) and 'FF as a form feed character after each page.
With the configfile option set to pdf
, tesseract will produce searchable PDF pages containing images with a hidden, searchable text layer.
With the configfile option set to hocr
, tesseract will produce XHTML output compliant with the hOCR specification (the input image name must be ASCII if the operating system use something other than UTF-8 encoding for filenames - see issue 809 for some details).
With the configfile option set to tsv
, tesseract will produce tab-separated values file.
tesseract -c textonly_pdf=1
will produce a text-only PDF which can be merged with an images-only PDF. See issue 660 for related discussion and utility for merging the PDFs.
Each page will be terminated by the FF character by default for text output.
Setting page_separator
to the LF character would restore the old behaviour of adding an empty line at the end of each page.
Setting page_separator
to an empty string would omit page separators.
In newer Tesseract (after September 2017) the include_page_breaks
config variable has been removed. The default is now to separate pages with the form feed control character. Use -c page_separator="[PAGE SEPARATOR]"
to use a different separator, and -c page_separator=''
to disable page breaks entirely.
See Tesseract Wiki Command Line Usage page for information on how to run Tesseract from the command line.
tesseract --help
will provide the most recent help information for the installed version.
Prepare a text file that has the path to each image:
path/to/1.png
path/to/2.png
path/to/3.tiff
Save it, and then give its name as input file to Tesseract.
tesseract savedlist output
Use the tessedit_page_number
config variable as part of the command (e.g. tesseract myscan.png out -c tessedit_page_number=0
).
Let’s say you have an amazing but slow multipage scanning device. It would be nice to OCR during scanning. In this example, the scanning program is sending image filenames to Tesseract as they are produced. Tesseract streams a searchable PDF to stdout.
scanimage --batch --batch-print | tesseract -c stream_filelist=true - - pdf > output.pdf
To restore the old behaviour of writing to tesseract.log instead of writing to the console window, you need a text file that contains this:
debug_file tesseract.log
Call the file logfile
and put it in tessdata/configs/
, then add logfile
to the end of your command line.
See issue 579. On Linux you can redirect stderr and stdout output to /dev/null
. E.g.:
tesseract phototest.tif phototest 1>/dev/null 2>&1
With tesseract 3.02 you can use the config quiet
. E.g.:
tesseract phototest.tif phototest quiet
Warning: Both options will cause you to not see the error message if there is one.
See Tesseract Wiki API examples page for sample programs for using the API.
There are inconsistent results from tesseract when the same TessBaseAPI object is used for decoding multiple images.
Try to turn off the adaptive classifier by setting the config variable classify_enable_learning
to 0
, or to clear the adaptive data with the method ClearAdaptiveClassifier()
.
See also the discussion on the tesseract forum.
You should note that in many cases, in order to get better OCR results, you’ll need to improve the quality of the input image you are giving Tesseract.
If you are running Tesseract 4, you can use the "fast" integer models.
Tesseract 4 also uses up to four CPU threads while processing a page, so it will be faster than Tesseract 3 for a single page.
If your computer has only two CPU cores, then running four threads will slow down things significantly and it would be better to use a single thread or maybe a maximum of two threads! Using a single thread eliminates the computation overhead of multithreading and is also the best solution for processing lots of images by running one Tesseract process per CPU core.
Set the maximum number of threads using the environment variable OMP_THREAD_LIMIT
.
To disable multithreading, use OMP_THREAD_LIMIT=1
.
UPDATE 2019-10-06: Recent tesseract code allows to use option -c tessedit_do_invert=0
which brings extra speed.
Periodically stable versions go to the downloads page. Between releases, and in particular, just before a new release, the latest code is available from git. You can find the source here: https://github.com/tesseract-ocr/tesseract.git where you can check it out either by command line, or by following the link to the howto on using various client programs and plugins.
If you want to have several versions of tesseract (e.g. you want to compare OCR result) I would suggest you to compile them from source (e.g. in /usr/src
) and not install them. If you want to test particular version you can run it this way:
/usr/src/tesseract-3.03/api/tesseract eurotext.tif eurotext
/usr/src/tesseract-ocr.3.02/api/tesseract eurotext.tif eurotext
Where /usr/src/tesseract-3.03/api/tesseract
is the shell wrapper script, and it will take care that the correct shared library is used (without installation…).
Tesseract can be trained to recognize other languages or finetune existing language models. See Tesseract Wiki Training Tesseract 4.00 page for information on training the LSTM engine.
Please note that tesstrain.sh
and tesstrain.py
only support training using synthetic images created using a UTF-8 training text and Unicode fonts to render the text. Training from scanned images and transcription is supported via tesstrain makefile.
Searchable PDF output is a standard feature as of Tesseract version 3.03. Use the pdf
config file like this:
tesseract phototest.tif phototest pdf
There may be nothing wrong with the PDF itself, but its hidden, searchable text layer may be not understood by your PDF reader. For example, Preview.app in Mac OS X is well known for having problems like this, and might "see" only spaces and no text. Try using Adobe Acrobat Reader instead.
Use the config variable -c textonly_pdf=1
and Merge your image-only and text-only PDF.
See tesseract-ocr/tesseract#660 (comment) for details.
You can, but it won’t work very well, as Tesseract is designed for printed text. Look for projects focused on handwriting recognition.
No. Tesseract is for text recognition.
You’re looking at it. If things aren’t clear, search on the Tesseract Google Group or ask us there. If you want to help us write more, please do, and post it to the group!
Try searching the forum: http://groups.google.com/group/tesseract-ocr as well as open and closed issues on GitHub: https://github.com/tesseract-ocr/tesseract/issues, as your question may have come up before even if it is not listed here.
If you have a question which is not answered by the FAQ, Wiki pages and Issues, please search in the users mailing-list/forum before posting it there.
If you think you found a bug in Tesseract, please search existing issues. If you find an existing similar issue, please add to it, otherwise create a new issue.
Read the CONTRIBUTING guide before you report an issue in GitHub or ask a question in the forum.