This commit is contained in:
NikolajDanger
2022-09-19 14:39:07 +02:00
parent 2adb480dbf
commit 0e6292f1cf

View File

@ -11,9 +11,6 @@ def find_aruco(arlo):
aruco_dict, aruco_dict,
parameters=aruco_params parameters=aruco_params
) )
print("Corners: ", detected[0])
print("Ids: ", detected[1])
print("Rejected: ", detected[2])
for bounding, n in zip(corners, ids): for bounding, n in zip(corners, ids):
cv2.line(image, bounding[0], bounding[1], (0,255,0)) cv2.line(image, bounding[0], bounding[1], (0,255,0))