| Crates.io | cu-apriltag |
| lib.rs | cu-apriltag |
| version | 0.9.1 |
| created_at | 2025-03-13 16:50:00.365994+00 |
| updated_at | 2025-09-12 20:28:55.982884+00 |
| description | AprilTag detection and pose for Copper |
| homepage | https://github.com/copper-project |
| repository | https://github.com/copper-project/copper-rs |
| max_upload_size | |
| id | 1591163 |
| size | 466,842 |
Allows to detect and get the pose out of CuImages. They need to be 8bits and with high contrast (see the dynamic thresholding task).
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,
},
),
]
CuImage (required): The CuImage to detect the apriltag on. It should be 8bits and with high contrast.Pose: The pose of the detected apriltag in the camera frame of reference (4x4 matrix).