This commit is contained in:
NikolajDanger
2022-09-28 13:57:23 +02:00
parent 193e15fc2a
commit 8201952b4b

View File

@ -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 = np.array([[cos(theta), -sin(theta)], [sin(theta), cos(theta)]])
while True:
arucos = find_aruco(arlo.take_photo())