Go to file
Robert Sachunsky 342e94e287 reinstate ensemble combination and in-memory prediction
.circleci use resmgr for model download
repo add assets subrepo
sbb_binarize reinstate ensemble combination and in-memory prediction
.gitignore 📦 v0.0.2
.gitkeep Add new directory, you can find corresponding models in qurator-data
.gitmodules add assets subrepo
CHANGELOG.md 📦 v0.0.11
LICENSE Add LICENSE
Makefile fix test
README.md Merge branch 'master-upstream'
make.sh Add new file
ocrd-tool.json add ocrd-tool.json
requirements.txt Merge branch 'master-upstream'
setup.py minimal CI setup

README.md

Binarization

Binarization for document images

Examples

Introduction

This tool performs document image binarization using a trained ResNet50-UNet model.

Installation

Clone the repository, enter it and run

pip install .

Models

Pre-trained models in HDF5 format can be downloaded from here:

https://qurator-data.de/sbb_binarization/

We also provide a Tensorflow saved_model via Huggingface:

https://huggingface.co/SBB/sbb_binarization

Usage

sbb_binarize \
  -m <path to directory containing model files> \
  <input image> \
  <output image>

Images containing a lot of border noise (black pixels) should be cropped beforehand to improve the quality of results.

Example

sbb_binarize -m /path/to/models/ myimage.tif myimage-bin.tif

To use the OCR-D interface:

ocrd-sbb-binarize --overwrite -I INPUT_FILE_GRP -O OCR-D-IMG-BIN -P model "/var/lib/sbb_binarization"