This commit is contained in:
Arne van Iterson 2023-09-14 14:24:16 +02:00
commit 29276df9d6
1 changed files with 4 additions and 2 deletions

View File

@ -46,6 +46,8 @@ for file in os.listdir(input_folder):
small_img,
corners,
ids)
# Debug
for id in ids:
print(id)
print(corners[id[0]])
@ -68,8 +70,8 @@ for file in os.listdir(input_folder):
color=(255, 100, 255),
thickness=-1)
print(x[i])
print(y[i])
print("x[%d]: %d"%(i, x[i]))
print("y[%d]: %d"%(i, y[i]))
print()
i += 1