fixed: machine based reading order cause tuple index out of range error if number of textregion is one.

pull/142/merge
vahidrezanezhad 3 weeks ago
parent 6aad006f4c
commit 871d7bfc5a

@ -4013,6 +4013,9 @@ class Eynollah:
inference_bs = 3 inference_bs = 3
input_1= np.zeros( (inference_bs, height1, width1,3)) input_1= np.zeros( (inference_bs, height1, width1,3))
starting_list_of_regions = [] starting_list_of_regions = []
if len(co_text_all)<=1:
starting_list_of_regions.append( list(range(1)) )
else:
starting_list_of_regions.append( list(range(labels_con.shape[2])) ) starting_list_of_regions.append( list(range(labels_con.shape[2])) )
index_update = 0 index_update = 0
index_selected = starting_list_of_regions[0] index_selected = starting_list_of_regions[0]

Loading…
Cancel
Save