Crop, deskew, segment into regions / tables / lines / words, or recognize with tesserocr
This offers OCR-D compliant workspace processors for (much of) the functionality of Tesseract via its Python API wrapper tesserocr . (Each processor is a step in the OCR-D functional model, and can be replaced with an alternative implementation. Data is represented within METS/PAGE.)
This includes image preprocessing (cropping, binarization, deskewing), layout analysis (region, table, line, word segmentation) and OCR proper. Most processors can operate on different levels of the PAGE hierarchy, depending on the workflow configuration. Image results are referenced (read and written) via AlternativeImage
, text results via TextEquiv
, deskewing via @orientation
, cropping via Border
and segmentation via Region
/ TextLine
/ Word
elements with Coords/@points
.
- Tesseract headers (
libtesseract-dev
) - Some Tesseract language models (
tesseract-ocr-{eng,deu,frk,...}
or script models (tesseract-ocr-script-{latn,frak,...}
) - Leptonica headers (
libleptonica-dev
)
This is the best option if you want to use the stable, released version.
NOTE
ocrd_tesserocr requires Tesseract >= 4.1.0. The Tesseract packages bundled with Ubuntu < 19.10 are too old. If you are on Ubuntu 18.04 LTS, please enable Alexander Pozdnyakov PPA which has up-to-date builds of Tesseract and its dependencies:
sudo add-apt-repository ppa:alex-p/tesseract-ocr
sudo apt-get update
sudo apt-get install git python3 python3-pip libtesseract-dev libleptonica-dev tesseract-ocr-eng tesseract-ocr wget
pip install ocrd_tesserocr
This is the best option if you want to run the software in a container.
You need to have Docker
docker pull ocrd/tesserocr
To run with docker:
docker run -v path/to/workspaces:/data ocrd/tesserocr ocrd-tesserocrd-crop ...
This is the best option if you want to change the source code or install the latest, unpublished changes.
We strongly recommend to use venv.
git clone https://github.com/OCR-D/ocrd_tesserocr
cd ocrd_tesserocr
sudo make deps-ubuntu # or manually with apt-get
make deps # or pip install -r requirements
make install # or pip install .
See docstrings and in the individual processors and ocrd-tool.json descriptions.
Available processors are:
- ocrd-tesserocr-crop
- ocrd-tesserocr-deskew
- ocrd-tesserocr-binarize
- ocrd-tesserocr-segment-region
- ocrd-tesserocr-segment-table
- ocrd-tesserocr-segment-line
- ocrd-tesserocr-segment-word
- ocrd-tesserocr-recognize
make test
This downloads some test data from https://github.com/OCR-D/assets under repo/assets
, and runs some basic test of the Python API as well as the CLIs.
Set PYTEST_ARGS="-s --verbose"
to see log output (-s
) and individual test results (--verbose
).