mirror of
https://github.com/qurator-spk/sbb_textline_detection.git
synced 2025-06-09 03:40:18 +02:00
🔊 sbb_textline_detector: In OCR-D interface, warn if overwriting existing segmentation
This commit is contained in:
parent
27b2d056b0
commit
f90b3cfa86
1 changed files with 6 additions and 0 deletions
|
@ -80,8 +80,14 @@ class OcrdSbbTextlineDetectorRecognize(Processor):
|
|||
page = pcgts.get_Page()
|
||||
|
||||
# Merge results → PAGE file
|
||||
if page.get_PrintSpace():
|
||||
log.warning("Page already contained a printspace")
|
||||
page.set_PrintSpace(tmp_page.get_PrintSpace())
|
||||
if page.get_ReadingOrder():
|
||||
log.warning("Page already contained a reading order")
|
||||
page.set_ReadingOrder(tmp_page.get_ReadingOrder())
|
||||
if page.get_TextRegion():
|
||||
log.warning("Page already contained text regions")
|
||||
page.set_TextRegion(tmp_page.get_TextRegion())
|
||||
|
||||
# Save metadata about this operation
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue