Skip to content

ArucoTarget

SUMMARY

ArucoTarget is a grid of independent ArUco markers, with no shared chessboard backing. See All Supported Targets for the other target types.

The Skill

python
from telekinesis.axon.targets import ArucoTarget

aruco = ArucoTarget(
    board_size=(5, 7),
    marker_length=0.025,
    marker_separation=0.005,
)
Single ArUco marker, one tile of an ArucoTarget grid
A single ArUco marker, one tile of an ArucoTarget grid

Initialization

ParameterTypeDescription
board_sizetuple[int, int](cols, rows) of markers.
marker_lengthfloatMarker edge length, in meters.
marker_separationfloatGap between markers, in meters.
aruco_dict_idint | strArUco dictionary, by OpenCV enum value or name. Defaults to DICT_4X4_1000.

Skills

ArucoTarget exposes no methods beyond construction.