Skip to contents

Bindings to Tesseract-OCR: a powerful optical character recognition (OCR) engine that supports over 100 languages. The engine is highly configurable in order to tune the detection algorithms and obtain the best possible results.

R-CMD-check codecov Project Status: Active – The project has reached a stable, usable state and is being actively developed. CRAN status BuyMeACoffee

Simple example

How to extract text from an image:

# Simple example
text <- ocr("inst/examples/figures/testocr.png")
cat(text)

Differences with the original tesseract R package

This package initially started as a series of modifications to the original tesseract package to improve performance and add new features. Some of the changes contributed to the original included the functions to choose between the “best” and “fast” models.

However, some changes were not integrated, such as using the cpp11 package, which I need to comply with the Munk School IT standards. Using cpp11 allows me to vendor the C++ headers into the package, and then I can conduct an offline installation in the Niagara Cluster.

The documentation changes a bit. I tried to expand the documentation and compare with Amazon Textract output.

This package includes some changes requested by CRAN, and these are mostly about the package internals.

Installation

Installation from source on Linux or OSX requires the Tesseract library (see below).

Install from source

On Debian or Ubuntu install libtesseract-dev and libleptonica-dev. Also install tesseract-ocr-eng to run examples.

sudo apt-get install -y libtesseract-dev libleptonica-dev tesseract-ocr-eng

On Ubuntu you can optionally use this PPA to get the latest version of Tesseract:

sudo add-apt-repository ppa:alex-p/tesseract-ocr-devel
sudo apt-get install -y libtesseract-dev tesseract-ocr-eng

On Fedora you need tesseract-devel and leptonica-devel

sudo yum install tesseract-devel leptonica-devel

On RHEL and CentOS you need tesseract-devel and leptonica-devel from EPEL

sudo yum install epel-release
sudo yum install tesseract-devel leptonica-devel

On OS-X use tesseract from Homebrew:

brew install tesseract

Tesseract uses training data to perform OCR. Most systems default to English training data. To improve OCR results for other languages you can to install the appropriate training data. On Windows and OSX you can do this in R using tesseract_download():

On Linux you need to install the appropriate training data from your distribution. For example to install the spanish training data:

Alternatively you can manually download training data from github and store it in a path on disk that you pass in the datapath parameter or set a default path via the TESSDATA_PREFIX environment variable. Note that the Tesseract 4 and Tesseract 3 use different training data format. Make sure to download training data from the branch that matches your libtesseract version.