|
|
|
@ -327,6 +327,7 @@ def get_images_of_ground_truth(gt_list, dir_in, output_dir, output_type, config_
|
|
|
|
|
co_text = {'drop-capital':[], "footnote":[], "footnote-continued":[], "heading":[], "signature-mark":[], "header":[], "catch-word":[], "page-number":[], "marginalia":[], "paragraph":[]}
|
|
|
|
|
all_defined_textregion_types = list(co_text.keys())
|
|
|
|
|
co_graphic = {"handwritten-annotation":[], "decoration":[], "stamp":[], "signature":[]}
|
|
|
|
|
all_defined_graphic_types = list(co_graphic.keys())
|
|
|
|
|
co_sep=[]
|
|
|
|
|
co_img=[]
|
|
|
|
|
co_table=[]
|
|
|
|
@ -425,6 +426,7 @@ def get_images_of_ground_truth(gt_list, dir_in, output_dir, output_type, config_
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
if "type" in nn.attrib:
|
|
|
|
|
if nn.attrib['type'] in all_defined_graphic_types:
|
|
|
|
|
c_t_in_graphic[nn.attrib['type']].append( np.array( [ [ int(x.split(',')[0]) , int(x.split(',')[1]) ] for x in p_h] ) )
|
|
|
|
|
|
|
|
|
|
break
|
|
|
|
@ -450,6 +452,7 @@ def get_images_of_ground_truth(gt_list, dir_in, output_dir, output_type, config_
|
|
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
if "type" in nn.attrib:
|
|
|
|
|
if nn.attrib['type'] in all_defined_graphic_types:
|
|
|
|
|
c_t_in_graphic[nn.attrib['type']].append( [ int(float(vv.attrib['x'])) , int(float(vv.attrib['y'])) ] )
|
|
|
|
|
sumi+=1
|
|
|
|
|
|
|
|
|
|