This commit is contained in:
NikolajDanger
2022-09-19 14:41:33 +02:00
parent 30c30146f2
commit e089664460

View File

@ -14,7 +14,8 @@ def find_aruco(arlo):
for bounding, n in zip(corners, ids):
bounding_box = bounding.reshape((4,2))
cv2.line(image, bounding[0], bounding[1], (0,255,0))
print(bounding_box)
cv2.line(image, bounding_box[0], bounding_box[1], (0,255,0))
return image