From 193e15fc2a25e46cbef6079c06abd99ef62abe08 Mon Sep 17 00:00:00 2001 From: NikolajDanger Date: Wed, 28 Sep 2022 13:57:01 +0200 Subject: [PATCH] :sparkles: --- drive_between_arucos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drive_between_arucos.py b/drive_between_arucos.py index 12f12d1..6e7106d 100644 --- a/drive_between_arucos.py +++ b/drive_between_arucos.py @@ -40,7 +40,7 @@ def find_aruco(image): def find_arucos(arlo): aruco_dict = {} theta = np.deg2rad(-20) - rot = [[[cos(theta), -sin(theta)], [sin(theta), cos(theta)]]] + rot = [[cos(theta), -sin(theta)], [sin(theta), cos(theta)]] while True: arucos = find_aruco(arlo.take_photo())