mirror of
https://github.com/qurator-spk/ocrd_repair_inconsistencies.git
synced 2025-06-09 19:59:59 +02:00
📝 README: Include an example script
This commit is contained in:
parent
44fe8a8357
commit
e3a1d1e941
1 changed files with 21 additions and 0 deletions
21
README.md
21
README.md
|
@ -5,3 +5,24 @@ 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.
|
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.
|
We wrote this as a one-shot script to fix some files. Use with caution.
|
||||||
|
|
||||||
|
|
||||||
|
## 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
|
||||||
|
~~~
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue