[!CAUTION] This was a one-off script, useful to solve a specific problem. We do not maintain it anymore, but in case you want to use it, we appreciate an e-mail to mike.gerber@sbb.spk-berlin.de 🕸
Automatically re-order lines, words and glyphs to become textually consistent with their parents.
PAGE-XML elements with textual annotation are re-ordered by their centroid coordinates
iff such re-ordering fixes the inconsistency between their appropriately concatenated
TextEquiv
texts with their parent's TextEquiv
text.
If TextEquiv
is missing, skip the respective elements.
Where available, respect the annotated visual order:
top-to-bottom
fashion, unless another textLineOrder
is annotated.left-to-right
and right-to-left
will be skipped currently.)left-to-right
fashion, unless another readingDirection
is annotated.top-to-bottom
and bottom-to-top
will be skipped currently.)This processor does not affect ReadingOrder
between regions, just the order of the XML elements
below the region level, and only if not contradicting the annotated textLineOrder
/readingDirection
.
We wrote this as a one-shot script to fix some files. Use with caution.
(In your venv, run:)
make deps # or pip install -r requirements.txt
make install # or pip install .
Offers the following user interfaces:
ocrd-repair-inconsistencies
To be used with PageXML documents in an OCR-D annotation workflow.
Use the following script to repair OCR-D-GT-PAGE
annotation in workspaces,
and then replace it with the output on success:
#!/bin/bash
set -e
tmp_fg=FIXED_$RANDOM
ocrd-repair-inconsistencies -I OCR-D-GT-PAGE -O $tmp_fg
for f in "$tmp_fg"/*; do
g="OCR-D-GT-PAGE/OCR-D-GT-PAGE_${f#${tmp_fg}/${tmp_fg}_}"
cp "$f" "$g"
done
ocrd workspace remove-group -rf $tmp_fg