π§ Jake Howard
π¦ @RealOrangeOne
π¨βπ» Senior Systems Engineer @ Torchbox
* I help others build robots
pip install zoloto
from pathlib import Path
from zoloto import MarkerType
from zoloto.cameras import Camera
with Camera(marker_type=MarkerType.APRILTAG_36H11) as camera:
for frame in camera:
print(
"Markers I can see:",
len(camera.get_visible_markers(frame=frame))
)