Crates.io | aprilgrid |
lib.rs | aprilgrid |
version | 0.2.1 |
source | src |
created_at | 2024-11-05 02:00:18.296574 |
updated_at | 2024-11-11 01:58:01.185799 |
description | Aprilgrid |
homepage | https://github.com/powei-lin/aprilgrid-rs |
repository | https://github.com/powei-lin/aprilgrid-rs |
max_upload_size | |
id | 1435915 |
size | 7,602,613 |
cargo add aprilgrid
See examples/demo.rs
// load image
let img = ImageReader::open(path.unwrap())?.decode()?;
// create detector
let detector = aprilgrid::detector::TagDetector::new(&aprilgrid::TagFamily::T36H11, None);
// detect tags
let tags = detector.detect(&img);
cargo run --example demo -r
cargo test -r