You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
938 B
Bash
31 lines
938 B
Bash
2 years ago
|
#!/bin/sh
|
||
|
set -ex
|
||
|
|
||
2 years ago
|
test_id=`basename $0`
|
||
|
cd `mktemp -d /tmp/$test_id-XXXXX`
|
||
2 years ago
|
|
||
11 months ago
|
OCRD_CIS_OCROPY_MODEL=fraktur.pyrnn.gz
|
||
|
|
||
|
# Prepare processors
|
||
|
ocrd resmgr download ocrd-cis-ocropy-recognize $OCRD_CIS_OCROPY_MODEL
|
||
|
|
||
2 years ago
|
# Prepare test workspace
|
||
11 months ago
|
wget https://qurator-data.de/examples/actevedef_718448162.first-page.zip
|
||
|
unzip actevedef_718448162.first-page.zip
|
||
|
cd actevedef_718448162.first-page
|
||
|
|
||
|
# XXX ocrd-cis-ocropy-segment wasn't happy with the binarized input (no
|
||
|
# "binarized" AlternativeImage?!), so we do it here again
|
||
|
ocrd-skimage-binarize -I OCR-D-IMG -O OCR-D-IMG-BIN
|
||
2 years ago
|
|
||
|
# Run tests
|
||
11 months ago
|
ocrd-cis-ocropy-segment \
|
||
|
-I OCR-D-IMG-BIN -O TEST-CIS-OCROPY-SEG-LINE \
|
||
|
-P level-of-operation page
|
||
|
test "$(grep TextLine TEST-CIS-OCROPY-SEG-LINE/*.xml | wc -l)" -gt 50
|
||
|
|
||
|
ocrd-cis-ocropy-recognize \
|
||
|
-I TEST-CIS-OCROPY-SEG-LINE -O TEST-CIS-OCROPY-OCR \
|
||
|
-P model $OCRD_CIS_OCROPY_MODEL
|
||
|
test "$(grep Unicode TEST-CIS-OCROPY-OCR/*.xml | wc -l)" -gt 50
|