Skip to content

Commit

Permalink
comment unnecessary print commands
Browse files Browse the repository at this point in the history
  • Loading branch information
vahidrezanezhad committed Nov 27, 2023
1 parent f2811ee commit 6018b35
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions qurator/eynollah/eynollah.py
Original file line number Diff line number Diff line change
Expand Up @@ -2071,7 +2071,6 @@ def do_order_of_regions_no_full_layout(self, contours_only_text_parent, contours
arg_text_con = []
for ii in range(len(cx_text_only)):
for jj in range(len(boxes)):
print(cx_text_only[ii],cy_text_only[ii],'markaz')
if cx_text_only[ii] >= boxes[jj][0] and cx_text_only[ii] < boxes[jj][1] and cy_text_only[ii] >= boxes[jj][2] and cy_text_only[ii] < boxes[jj][3]: # this is valid if the center of region identify in which box it is located
arg_text_con.append(jj)
break
Expand Down Expand Up @@ -2107,8 +2106,6 @@ def do_order_of_regions_no_full_layout(self, contours_only_text_parent, contours
ref_point += len(id_of_texts)

order_of_texts_tot = []
print(len(contours_only_text_parent),'contours_only_text_parent')
print(len(order_by_con_main),'order_by_con_main')

for tj1 in range(len(contours_only_text_parent)):
order_of_texts_tot.append(int(order_by_con_main[tj1]))
Expand Down

0 comments on commit 6018b35

Please sign in to comment.