Compare commits

..

2 Commits

Author SHA1 Message Date
8201952b4b 2022-09-28 13:57:23 +02:00
193e15fc2a 2022-09-28 13:57:01 +02:00

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())