├── .gitignore ├── OLD └── ocropy-json ├── all-lines.py ├── all-pages.py ├── degrade-page ├── docker ├── Dockerfile ├── Makefile ├── base │ └── Dockerfile ├── homedir │ ├── .bashrc │ ├── .blackbox │ │ └── Menu │ ├── .blackboxrc │ └── .vimrc ├── nvidia-smi └── runvnc ├── ocr.py ├── ocroline-recognize ├── ocroline-test ├── ocroline-train ├── ocropus-dlseg ├── ocropy2 ├── __init__.py ├── degrade.py ├── edist.py ├── gpageseg.py ├── inputs.py ├── layers.py ├── lineest.py ├── nlbin.py ├── ocrcodecs.py ├── ocrnet.py └── psegutils.py ├── ocroseg-lines ├── ocroseg-train ├── pseg-to-lineimage ├── run-ocropy2 ├── seg-model.py ├── setup.py ├── test-lines ├── 0100 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0200 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0300 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0400 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0500 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0600 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0700 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── 0800 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png └── 0900 │ ├── 010001.gt.txt │ ├── 010001.png │ ├── 010003.gt.txt │ ├── 010003.png │ ├── 010005.gt.txt │ └── 010005.png ├── uw3dew-input.py └── uw3pages-input.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/.gitignore -------------------------------------------------------------------------------- /OLD/ocropy-json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/OLD/ocropy-json -------------------------------------------------------------------------------- /all-lines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/all-lines.py -------------------------------------------------------------------------------- /all-pages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/all-pages.py -------------------------------------------------------------------------------- /degrade-page: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/degrade-page -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/Makefile -------------------------------------------------------------------------------- /docker/base/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/base/Dockerfile -------------------------------------------------------------------------------- /docker/homedir/.bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/homedir/.bashrc -------------------------------------------------------------------------------- /docker/homedir/.blackbox/Menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/homedir/.blackbox/Menu -------------------------------------------------------------------------------- /docker/homedir/.blackboxrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/homedir/.blackboxrc -------------------------------------------------------------------------------- /docker/homedir/.vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/homedir/.vimrc -------------------------------------------------------------------------------- /docker/nvidia-smi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/nvidia-smi -------------------------------------------------------------------------------- /docker/runvnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/docker/runvnc -------------------------------------------------------------------------------- /ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocr.py -------------------------------------------------------------------------------- /ocroline-recognize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocroline-recognize -------------------------------------------------------------------------------- /ocroline-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocroline-test -------------------------------------------------------------------------------- /ocroline-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocroline-train -------------------------------------------------------------------------------- /ocropus-dlseg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropus-dlseg -------------------------------------------------------------------------------- /ocropy2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/__init__.py -------------------------------------------------------------------------------- /ocropy2/degrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/degrade.py -------------------------------------------------------------------------------- /ocropy2/edist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/edist.py -------------------------------------------------------------------------------- /ocropy2/gpageseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/gpageseg.py -------------------------------------------------------------------------------- /ocropy2/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/inputs.py -------------------------------------------------------------------------------- /ocropy2/layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/layers.py -------------------------------------------------------------------------------- /ocropy2/lineest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/lineest.py -------------------------------------------------------------------------------- /ocropy2/nlbin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/nlbin.py -------------------------------------------------------------------------------- /ocropy2/ocrcodecs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/ocrcodecs.py -------------------------------------------------------------------------------- /ocropy2/ocrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/ocrnet.py -------------------------------------------------------------------------------- /ocropy2/psegutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocropy2/psegutils.py -------------------------------------------------------------------------------- /ocroseg-lines: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocroseg-lines -------------------------------------------------------------------------------- /ocroseg-train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/ocroseg-train -------------------------------------------------------------------------------- /pseg-to-lineimage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/pseg-to-lineimage -------------------------------------------------------------------------------- /run-ocropy2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/run-ocropy2 -------------------------------------------------------------------------------- /seg-model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/seg-model.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/setup.py -------------------------------------------------------------------------------- /test-lines/0100/010001.gt.txt: -------------------------------------------------------------------------------- 1 | 78 2 | -------------------------------------------------------------------------------- /test-lines/0100/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0100/010001.png -------------------------------------------------------------------------------- /test-lines/0100/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0100/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0100/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0100/010003.png -------------------------------------------------------------------------------- /test-lines/0100/010005.gt.txt: -------------------------------------------------------------------------------- 1 | in determining this grain boundary behaviour. 2 | -------------------------------------------------------------------------------- /test-lines/0100/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0100/010005.png -------------------------------------------------------------------------------- /test-lines/0200/010001.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010001.gt.txt -------------------------------------------------------------------------------- /test-lines/0200/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010001.png -------------------------------------------------------------------------------- /test-lines/0200/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0200/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010003.png -------------------------------------------------------------------------------- /test-lines/0200/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0200/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0200/010005.png -------------------------------------------------------------------------------- /test-lines/0300/010001.gt.txt: -------------------------------------------------------------------------------- 1 | 72 2 | -------------------------------------------------------------------------------- /test-lines/0300/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0300/010001.png -------------------------------------------------------------------------------- /test-lines/0300/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0300/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0300/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0300/010003.png -------------------------------------------------------------------------------- /test-lines/0300/010005.gt.txt: -------------------------------------------------------------------------------- 1 | tion terms. 2 | -------------------------------------------------------------------------------- /test-lines/0300/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0300/010005.png -------------------------------------------------------------------------------- /test-lines/0400/010001.gt.txt: -------------------------------------------------------------------------------- 1 | 306 2 | -------------------------------------------------------------------------------- /test-lines/0400/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0400/010001.png -------------------------------------------------------------------------------- /test-lines/0400/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0400/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0400/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0400/010003.png -------------------------------------------------------------------------------- /test-lines/0400/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0400/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0400/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0400/010005.png -------------------------------------------------------------------------------- /test-lines/0500/010001.gt.txt: -------------------------------------------------------------------------------- 1 | Steiner and Flanagan 2 | -------------------------------------------------------------------------------- /test-lines/0500/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0500/010001.png -------------------------------------------------------------------------------- /test-lines/0500/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0500/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0500/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0500/010003.png -------------------------------------------------------------------------------- /test-lines/0500/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0500/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0500/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0500/010005.png -------------------------------------------------------------------------------- /test-lines/0600/010001.gt.txt: -------------------------------------------------------------------------------- 1 | 28 2 | -------------------------------------------------------------------------------- /test-lines/0600/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0600/010001.png -------------------------------------------------------------------------------- /test-lines/0600/010003.gt.txt: -------------------------------------------------------------------------------- 1 | graph. We next augment the matching, 2 | -------------------------------------------------------------------------------- /test-lines/0600/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0600/010003.png -------------------------------------------------------------------------------- /test-lines/0600/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0600/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0600/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0600/010005.png -------------------------------------------------------------------------------- /test-lines/0700/010001.gt.txt: -------------------------------------------------------------------------------- 1 | 1. Introduction 2 | -------------------------------------------------------------------------------- /test-lines/0700/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0700/010001.png -------------------------------------------------------------------------------- /test-lines/0700/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0700/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0700/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0700/010003.png -------------------------------------------------------------------------------- /test-lines/0700/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0700/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0700/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0700/010005.png -------------------------------------------------------------------------------- /test-lines/0800/010001.gt.txt: -------------------------------------------------------------------------------- 1 | Quicksilver Deposits in Nevada 2 | -------------------------------------------------------------------------------- /test-lines/0800/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0800/010001.png -------------------------------------------------------------------------------- /test-lines/0800/010003.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0800/010003.gt.txt -------------------------------------------------------------------------------- /test-lines/0800/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0800/010003.png -------------------------------------------------------------------------------- /test-lines/0800/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0800/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0800/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0800/010005.png -------------------------------------------------------------------------------- /test-lines/0900/010001.gt.txt: -------------------------------------------------------------------------------- 1 | April 1993] 2 | -------------------------------------------------------------------------------- /test-lines/0900/010001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0900/010001.png -------------------------------------------------------------------------------- /test-lines/0900/010003.gt.txt: -------------------------------------------------------------------------------- 1 | 467 2 | -------------------------------------------------------------------------------- /test-lines/0900/010003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0900/010003.png -------------------------------------------------------------------------------- /test-lines/0900/010005.gt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0900/010005.gt.txt -------------------------------------------------------------------------------- /test-lines/0900/010005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/test-lines/0900/010005.png -------------------------------------------------------------------------------- /uw3dew-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/uw3dew-input.py -------------------------------------------------------------------------------- /uw3pages-input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ocropus-archive/DUP-ocropy2/HEAD/uw3pages-input.py --------------------------------------------------------------------------------