mirror of
https://github.com/qurator-spk/ocrd-galley.git
synced 2025-06-30 17:09:52 +02:00
Fix image references
This commit is contained in:
parent
b6c490e18b
commit
fbc3b8ca4f
1 changed files with 14 additions and 2 deletions
|
@ -73,12 +73,24 @@ page_validate_xml() {
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
page_fix_image_references() {
|
||||||
|
# Make image references relative to the PAGE XML file. The rest of OCR-D probably isn't going to like it, but it
|
||||||
|
# is a. correct and b. makes PAGE Viewer open the image file automatically.
|
||||||
|
filegrp=$1
|
||||||
|
|
||||||
|
local file
|
||||||
|
for file in `ocrd workspace find -G $filegrp`; do
|
||||||
|
sed -i 's#imageFilename="OCR-D-IMG#imageFilename="../OCR-D-IMG#g' $file
|
||||||
|
done
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
do_fontident
|
do_fontident
|
||||||
do_linesegmentation
|
do_linesegmentation
|
||||||
do_ocr
|
do_ocr
|
||||||
page_fix_xml OCR-D-OCR-TESS
|
page_fix_xml OCR-D-OCR-TESS
|
||||||
page_validate_xml OCR-D-OCR-TESS # This also makes sure PAGE Viewer can open it
|
page_validate_xml OCR-D-OCR-TESS # This also makes sure PAGE Viewer can open it
|
||||||
|
page_fix_image_references OCR-D-OCR-TESS
|
||||||
|
|
||||||
|
|
||||||
# XXX Multiple calls create multiple identical mets:agent elements
|
# XXX Multiple calls create multiple identical mets:agent elements
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue