aprilgrid-rs
Pure Rust version of aprilgrid
Install from cargo
cargo add aprilgrid
Usage
See examples/demo.rs
// load image
let img = open?.decode?;
// create detector
let detector = new;
// detect tags
let tags = detector.detect;
// support kornia image
// cargo add aprilgrid -F kornia
let image: Image =
read_image_any.unwrap;
let tags = detector.detect_kornia;
Example
Run tests
TODO
- Robustness.
- Unit tests.
Generate chart pdf