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.
|
#!/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
|