Skip to content

Commit

Permalink
deleted some prints
Browse files Browse the repository at this point in the history
  • Loading branch information
raulgilabert committed Oct 20, 2022
1 parent 01c7240 commit 9a51cfd
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ def detect_borders(image):
x = pos%width
y = int(pos/width)

print("Case 2", x, y)

pos += width

borders[int(num/3)][3] = y
Expand All @@ -34,8 +32,6 @@ def detect_borders(image):
x = pos%width
y = int(pos/width)

print("Case 1", x, y)

pos += 1


Expand All @@ -50,16 +46,14 @@ def detect_borders(image):
borders[int(num/3)][0] = x
borders[int(num/3)][2] = y

print("Case 0", x, y)

pos += 1

return borders



def convert_file(filename):
print("Working with file: " filename)
print("Working with file: " + filename)
images = convert_from_path(filename)

path_img = "images/" + filename
Expand Down

0 comments on commit 9a51cfd

Please sign in to comment.