ocrd_repair_inconsistencies/README.md

29 lines
651 B
Markdown
Raw Normal View History

2019-11-22 16:51:28 +01:00
# ocrd_repair_inconsistencies
Automatically fix order inconsistencies in regions, lines and words. Elements
are only fixed if reordering their children top-to-bottom/left-to-right fixes
the appropriately concatenated text of the children to match the parent's text.
We wrote this as a one-shot script to fix some files. Use with caution.
2019-11-25 11:58:57 +01:00
## Example usage
For example, use this fix script:
~~~sh
#!/bin/sh
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
rmdir $tmp_fg
~~~