This commit is contained in:
NikolajDanger
2022-09-19 14:39:42 +02:00
parent 0e6292f1cf
commit 493f43b908

View File

@ -13,6 +13,7 @@ def find_aruco(arlo):
) )
for bounding, n in zip(corners, ids): for bounding, n in zip(corners, ids):
print(bounding)
cv2.line(image, bounding[0], bounding[1], (0,255,0)) cv2.line(image, bounding[0], bounding[1], (0,255,0))
return image return image