cu-apriltag

Crates.iocu-apriltag
lib.rscu-apriltag
version0.9.1
created_at2025-03-13 16:50:00.365994+00
updated_at2025-09-12 20:28:55.982884+00
descriptionAprilTag detection and pose for Copper
homepagehttps://github.com/copper-project
repositoryhttps://github.com/copper-project/copper-rs
max_upload_size
id1591163
size466,842
Guillaume Binet (gbin)

documentation

README

Apriltag detection

Allows to detect and get the pose out of CuImages. They need to be 8bits and with high contrast (see the dynamic thresholding task).

Configuration

In the Ron file you need to specify the tag family, the tag size and the camera intrinsics.:

    tasks: [
        (
            id: "pos",
            type: "cu_apriltag::AprilTags",
            config: {
            "tag_family": "tag16h5",
            "tag_size": 0.14,
            "fx": 1513.93,
            "fy": 1513.93,
            "cx": 946.84,
            "cy": 557.819,
            },
        ),
    ]

Input

  • CuImage (required): The CuImage to detect the apriltag on. It should be 8bits and with high contrast.

Output

  • Pose: The pose of the detected apriltag in the camera frame of reference (4x4 matrix).

Commit count: 741

cargo fmt