|
|
|
@ -1,23 +1,36 @@
|
|
|
|
|
# pylint: disable=too-many-locals,wrong-import-position,too-many-lines,too-many-statements,chained-comparison,fixme,broad-except,c-extension-no-member
|
|
|
|
|
# pylint: disable=import-error
|
|
|
|
|
from pathlib import Path
|
|
|
|
|
import os.path
|
|
|
|
|
|
|
|
|
|
from .utils.xml import create_page_xml, add_textequiv, xml_reading_order
|
|
|
|
|
from .utils.xml import create_page_xml, xml_reading_order
|
|
|
|
|
from .utils.counter import EynollahIdCounter
|
|
|
|
|
|
|
|
|
|
from ocrd_utils import getLogger
|
|
|
|
|
from lxml import etree as ET
|
|
|
|
|
from ocrd_models.ocrd_page import (
|
|
|
|
|
BorderType,
|
|
|
|
|
CoordsType,
|
|
|
|
|
TextEquivType,
|
|
|
|
|
PcGtsType,
|
|
|
|
|
TextLineType,
|
|
|
|
|
TextRegionType,
|
|
|
|
|
ImageRegionType,
|
|
|
|
|
TableRegionType,
|
|
|
|
|
|
|
|
|
|
to_xml
|
|
|
|
|
)
|
|
|
|
|
import numpy as np
|
|
|
|
|
|
|
|
|
|
class EynollahXmlWriter():
|
|
|
|
|
|
|
|
|
|
def __init__(self, *, dir_out, image_filename, curved_line):
|
|
|
|
|
def __init__(self, *, dir_out, image_filename, curved_line, pcgts=None):
|
|
|
|
|
self.logger = getLogger('eynollah.writer')
|
|
|
|
|
self.counter = EynollahIdCounter()
|
|
|
|
|
self.dir_out = dir_out
|
|
|
|
|
self.image_filename = image_filename
|
|
|
|
|
self.image_filename_stem = Path(Path(image_filename).name).stem
|
|
|
|
|
self.curved_line = curved_line
|
|
|
|
|
self.pcgts = pcgts if pcgts else PcGtsType()
|
|
|
|
|
self.scale_x = None # XXX set outside __init__
|
|
|
|
|
self.scale_y = None # XXX set outside __init__
|
|
|
|
|
self.height_org = None # XXX set outside __init__
|
|
|
|
@ -38,12 +51,12 @@ class EynollahXmlWriter():
|
|
|
|
|
points_page_print = points_page_print + ' '
|
|
|
|
|
return points_page_print[:-1]
|
|
|
|
|
|
|
|
|
|
def serialize_lines_in_marginal(self, marginal, all_found_texline_polygons_marginals, marginal_idx, page_coord, all_box_coord_marginals, slopes_marginals, counter):
|
|
|
|
|
def serialize_lines_in_marginal(self, marginal_region, all_found_texline_polygons_marginals, marginal_idx, page_coord, all_box_coord_marginals, slopes_marginals, counter):
|
|
|
|
|
for j in range(len(all_found_texline_polygons_marginals[marginal_idx])):
|
|
|
|
|
textline = ET.SubElement(marginal, 'TextLine')
|
|
|
|
|
textline.set('id', counter.next_line_id)
|
|
|
|
|
coord = ET.SubElement(textline, 'Coords')
|
|
|
|
|
add_textequiv(textline)
|
|
|
|
|
coords = CoordsType()
|
|
|
|
|
textline = TextLineType(id=counter.next_line_id, coords=coords)
|
|
|
|
|
marginal_region.add_TextLine(textline)
|
|
|
|
|
textline.add_TextEquiv(TextEquivType(Unicode=''))
|
|
|
|
|
points_co = ''
|
|
|
|
|
for l in range(len(all_found_texline_polygons_marginals[marginal_idx][j])):
|
|
|
|
|
if not self.curved_line:
|
|
|
|
@ -64,7 +77,7 @@ class EynollahXmlWriter():
|
|
|
|
|
points_co += str(int((all_found_texline_polygons_marginals[marginal_idx][j][l][0][0] + page_coord[2]) / self.scale_x))
|
|
|
|
|
points_co += ','
|
|
|
|
|
points_co += str(int((all_found_texline_polygons_marginals[marginal_idx][j][l][0][1] + page_coord[0]) / self.scale_y))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
elif self.curved_line and np.abs(slopes_marginals[marginal_idx]) > 45:
|
|
|
|
|
if len(all_found_texline_polygons_marginals[marginal_idx][j][l]) == 2:
|
|
|
|
|
points_co += str(int((all_found_texline_polygons_marginals[marginal_idx][j][l][0] + all_box_coord_marginals[marginal_idx][2] + page_coord[2]) / self.scale_x))
|
|
|
|
@ -74,20 +87,16 @@ class EynollahXmlWriter():
|
|
|
|
|
points_co += str(int((all_found_texline_polygons_marginals[marginal_idx][j][l][0][0] + all_box_coord_marginals[marginal_idx][2] + page_coord[2]) / self.scale_x))
|
|
|
|
|
points_co += ','
|
|
|
|
|
points_co += str(int((all_found_texline_polygons_marginals[marginal_idx][j][l][0][1] + all_box_coord_marginals[marginal_idx][0] + page_coord[0]) / self.scale_y))
|
|
|
|
|
points += ' '
|
|
|
|
|
coords.set_points(points_co[:-1])
|
|
|
|
|
|
|
|
|
|
if l < len(all_found_texline_polygons_marginals[marginal_idx][j]) - 1:
|
|
|
|
|
points_co += ' '
|
|
|
|
|
coord.set('points',points_co)
|
|
|
|
|
|
|
|
|
|
def serialize_lines_in_region(self, textregion, all_found_texline_polygons, region_idx, page_coord, all_box_coord, slopes, counter):
|
|
|
|
|
def serialize_lines_in_region(self, text_region, all_found_texline_polygons, region_idx, page_coord, all_box_coord, slopes, counter):
|
|
|
|
|
self.logger.debug('enter serialize_lines_in_region')
|
|
|
|
|
for j in range(len(all_found_texline_polygons[region_idx])):
|
|
|
|
|
textline = ET.SubElement(textregion, 'TextLine')
|
|
|
|
|
textline.set('id', counter.next_line_id)
|
|
|
|
|
coord = ET.SubElement(textline, 'Coords')
|
|
|
|
|
add_textequiv(textline)
|
|
|
|
|
coords = CoordsType()
|
|
|
|
|
textline = TextLineType(id=counter.next_line_id, coords=coords, TextEquiv=[TextEquivType(index=0, Unicode='')])
|
|
|
|
|
text_region.add_TextLine(textline)
|
|
|
|
|
region_bboxes = all_box_coord[region_idx]
|
|
|
|
|
|
|
|
|
|
points_co = ''
|
|
|
|
|
for idx_contour_textline, contour_textline in enumerate(all_found_texline_polygons[region_idx][j]):
|
|
|
|
|
if not self.curved_line:
|
|
|
|
@ -119,23 +128,22 @@ class EynollahXmlWriter():
|
|
|
|
|
points_co += str(int((contour_textline[0][0] + region_bboxes[2]+page_coord[2])/self.scale_x))
|
|
|
|
|
points_co += ','
|
|
|
|
|
points_co += str(int((contour_textline[0][1] + region_bboxes[0]+page_coord[0])/self.scale_y))
|
|
|
|
|
|
|
|
|
|
points_co += ' '
|
|
|
|
|
coord.set('points', points_co[:-1])
|
|
|
|
|
coords.set_points(points_co[:-1])
|
|
|
|
|
|
|
|
|
|
def write_pagexml(self, pcgts):
|
|
|
|
|
self.logger.info("filename stem: '%s'", self.image_filename_stem)
|
|
|
|
|
tree = ET.ElementTree(pcgts)
|
|
|
|
|
tree.write(os.path.join(self.dir_out, self.image_filename_stem) + ".xml")
|
|
|
|
|
out_fname = os.path.join(self.dir_out, self.image_filename_stem) + ".xml"
|
|
|
|
|
self.logger.info("output filename: '%s'", out_fname)
|
|
|
|
|
with open(out_fname, 'w') as f:
|
|
|
|
|
f.write(to_xml(pcgts))
|
|
|
|
|
|
|
|
|
|
def build_pagexml_no_full_layout(self, found_polygons_text_region, page_coord, order_of_texts, id_of_texts, all_found_texline_polygons, all_box_coord, found_polygons_text_region_img, found_polygons_marginals, all_found_texline_polygons_marginals, all_box_coord_marginals, slopes, slopes_marginals, cont_page):
|
|
|
|
|
self.logger.debug('enter build_pagexml_no_full_layout')
|
|
|
|
|
|
|
|
|
|
# create the file structure
|
|
|
|
|
pcgts, page = create_page_xml(self.image_filename, self.height_org, self.width_org)
|
|
|
|
|
page_print_sub = ET.SubElement(page, "Border")
|
|
|
|
|
coord_page = ET.SubElement(page_print_sub, "Coords")
|
|
|
|
|
coord_page.set('points', self.calculate_page_coords(cont_page))
|
|
|
|
|
pcgts = create_page_xml(self.image_filename, self.height_org, self.width_org)
|
|
|
|
|
page = pcgts.get_Page()
|
|
|
|
|
page.set_Border(BorderType(Coords=CoordsType(points=self.calculate_page_coords(cont_page))))
|
|
|
|
|
|
|
|
|
|
counter = EynollahIdCounter()
|
|
|
|
|
if len(found_polygons_text_region) > 0:
|
|
|
|
@ -144,33 +152,28 @@ class EynollahXmlWriter():
|
|
|
|
|
xml_reading_order(page, order_of_texts, id_of_marginalia)
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_text_region)):
|
|
|
|
|
textregion = ET.SubElement(page, 'TextRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
textregion.set('type', 'paragraph')
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_text_region[mm], page_coord))
|
|
|
|
|
textregion = TextRegionType(id=counter.next_region_id, type='paragraph',
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_text_region[mm], page_coord)),
|
|
|
|
|
TextEquiv=[TextEquivType(index=0, Unicode='')])
|
|
|
|
|
page.add_TextRegion(textregion)
|
|
|
|
|
self.serialize_lines_in_region(textregion, all_found_texline_polygons, mm, page_coord, all_box_coord, slopes, counter)
|
|
|
|
|
add_textequiv(textregion)
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_marginals)):
|
|
|
|
|
marginal = ET.SubElement(page, 'TextRegion')
|
|
|
|
|
marginal.set('id', counter.next_region_id)
|
|
|
|
|
marginal.set('type', 'marginalia')
|
|
|
|
|
coord_text = ET.SubElement(marginal, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_marginals[mm], page_coord))
|
|
|
|
|
marginal = TextRegionType(id=counter.next_region_id, type='marginalia',
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_marginals[mm], page_coord)))
|
|
|
|
|
page.add_TextRegion(marginal)
|
|
|
|
|
self.serialize_lines_in_marginal(marginal, all_found_texline_polygons_marginals, mm, page_coord, all_box_coord_marginals, slopes_marginals, counter)
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_text_region_img)):
|
|
|
|
|
textregion = ET.SubElement(page, 'ImageRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
img_region = ImageRegionType(id=counter.next_region_id, Coords=CoordsType())
|
|
|
|
|
page.add_ImageRegion(img_region)
|
|
|
|
|
points_co = ''
|
|
|
|
|
for lmm in range(len(found_polygons_text_region_img[mm])):
|
|
|
|
|
points_co += str(int((found_polygons_text_region_img[mm][lmm,0,0] + page_coord[2]) / self.scale_x))
|
|
|
|
|
points_co += ','
|
|
|
|
|
points_co += str(int((found_polygons_text_region_img[mm][lmm,0,1] + page_coord[0]) / self.scale_y))
|
|
|
|
|
points_co += ' '
|
|
|
|
|
coord_text.set('points', points_co[:-1])
|
|
|
|
|
img_region.get_Coords().set_points(points_co[:-1])
|
|
|
|
|
|
|
|
|
|
return pcgts
|
|
|
|
|
|
|
|
|
@ -178,10 +181,9 @@ class EynollahXmlWriter():
|
|
|
|
|
self.logger.debug('enter build_pagexml_full_layout')
|
|
|
|
|
|
|
|
|
|
# create the file structure
|
|
|
|
|
pcgts, page = create_page_xml(self.image_filename, self.height_org, self.width_org)
|
|
|
|
|
page_print_sub = ET.SubElement(page, "Border")
|
|
|
|
|
coord_page = ET.SubElement(page_print_sub, "Coords")
|
|
|
|
|
coord_page.set('points', self.calculate_page_coords(cont_page))
|
|
|
|
|
pcgts = create_page_xml(self.image_filename, self.height_org, self.width_org)
|
|
|
|
|
page = pcgts.get_Page()
|
|
|
|
|
page.set_Border(BorderType(Coords=CoordsType(points=self.calculate_page_coords(cont_page))))
|
|
|
|
|
|
|
|
|
|
counter = EynollahIdCounter()
|
|
|
|
|
_counter_marginals = EynollahIdCounter(region_idx=len(order_of_texts))
|
|
|
|
@ -189,52 +191,37 @@ class EynollahXmlWriter():
|
|
|
|
|
xml_reading_order(page, order_of_texts, id_of_marginalia)
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_text_region)):
|
|
|
|
|
textregion=ET.SubElement(page, 'TextRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
textregion.set('type', 'paragraph')
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_text_region[mm], page_coord))
|
|
|
|
|
textregion = TextRegionType(id=counter.next_region_id, type='paragraph',
|
|
|
|
|
TextEquiv=[TextEquivType(index=0, Unicode='')],
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_text_region[mm], page_coord)))
|
|
|
|
|
page.add_TextRegion(textregion)
|
|
|
|
|
self.serialize_lines_in_region(textregion, all_found_texline_polygons, mm, page_coord, all_box_coord, slopes, counter)
|
|
|
|
|
add_textequiv(textregion)
|
|
|
|
|
|
|
|
|
|
self.logger.debug('len(found_polygons_text_region_h) %s', len(found_polygons_text_region_h))
|
|
|
|
|
for mm in range(len(found_polygons_text_region_h)):
|
|
|
|
|
textregion=ET.SubElement(page, 'TextRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
textregion.set('type','header')
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_text_region_h[mm], page_coord))
|
|
|
|
|
textregion = TextRegionType(id=counter.next_region_id, type='header',
|
|
|
|
|
TextEquiv=[TextEquivType(index=0, Unicode='')],
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_text_region_h[mm], page_coord)))
|
|
|
|
|
page.add_TextRegion(textregion)
|
|
|
|
|
self.serialize_lines_in_region(textregion, all_found_texline_polygons_h, mm, page_coord, all_box_coord_h, slopes, counter)
|
|
|
|
|
add_textequiv(textregion)
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_marginals)):
|
|
|
|
|
marginal = ET.SubElement(page, 'TextRegion')
|
|
|
|
|
add_textequiv(textregion)
|
|
|
|
|
marginal.set('id', counter.next_region_id)
|
|
|
|
|
marginal.set('type', 'marginalia')
|
|
|
|
|
coord_text = ET.SubElement(marginal, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_marginals[mm], page_coord))
|
|
|
|
|
marginal = TextRegionType(id=counter.next_region_id, type='marginalia',
|
|
|
|
|
TextEquiv=[TextEquivType(index=0, Unicode='')],
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_marginals[mm], page_coord)))
|
|
|
|
|
page.add_TextRegion(marginal)
|
|
|
|
|
self.serialize_lines_in_marginal(marginal, all_found_texline_polygons_marginals, mm, page_coord, all_box_coord_marginals, slopes_marginals, counter)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_drop_capitals)):
|
|
|
|
|
textregion=ET.SubElement(page, 'TextRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
textregion.set('type', 'drop-capital')
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_drop_capitals[mm], page_coord))
|
|
|
|
|
add_textequiv(textregion)
|
|
|
|
|
page.add_TextRegion(TextRegionType(id=counter.next_region_id, type='drop-capital',
|
|
|
|
|
TextEquiv=[TextEquivType(index=0, Unicode='')],
|
|
|
|
|
Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_drop_capitals[mm], page_coord))))
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_text_region_img)):
|
|
|
|
|
textregion=ET.SubElement(page, 'ImageRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_text_region_img[mm], page_coord))
|
|
|
|
|
page.add_ImageRegion(ImageRegionType(id=counter.next_region_id, Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_text_region_img[mm], page_coord))))
|
|
|
|
|
|
|
|
|
|
for mm in range(len(found_polygons_tables)):
|
|
|
|
|
textregion = ET.SubElement(page, 'TableRegion')
|
|
|
|
|
textregion.set('id', counter.next_region_id)
|
|
|
|
|
coord_text = ET.SubElement(textregion, 'Coords')
|
|
|
|
|
coord_text.set('points', self.calculate_polygon_coords(found_polygons_tables[mm], page_coord))
|
|
|
|
|
page.add_TableRegion(TableRegionType(id=counter.next_region_id, Coords=CoordsType(points=self.calculate_polygon_coords(found_polygons_tables[mm], page_coord))))
|
|
|
|
|
|
|
|
|
|
return pcgts
|
|
|
|
|
|
|
|
|
|