From 0e6292f1cf9b2fbc4890440e77fe2c0ba8dbdd03 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Mon, 19 Sep 2022 14:39:07 +0200 Subject: [PATCH] :sparkles: --- find_aruco.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/find_aruco.py b/find_aruco.py index 5a06e7f..2e0ffaa 100644 --- a/find_aruco.py +++ b/find_aruco.py @@ -11,9 +11,6 @@ def find_aruco(arlo): aruco_dict, parameters=aruco_params ) - print("Corners: ", detected[0]) - print("Ids: ", detected[1]) - print("Rejected: ", detected[2]) for bounding, n in zip(corners, ids): cv2.line(image, bounding[0], bounding[1], (0,255,0))