Compare commits
2 Commits
517948c543
...
8201952b4b
Author | SHA1 | Date | |
---|---|---|---|
8201952b4b | |||
193e15fc2a |
@ -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())
|
||||
|
Reference in New Issue
Block a user