It's an extension to apriltag crate that adds image conversion from/to image crate for apriltag crate.
```rust use apriltag::{Detector, Family, Image}; use apriltag_image::prelude::*;
fn main() -> anyhow::Result<()> { let path = "testdata/DICTAPRILTAG16h5-2x2-500-10-0.8-29,12,22,2.jpg"; let reader = image::io::Reader::open(path)?; let imagebuf = reader.decode()?.toluma8(); let image = Image::fromimagebuffer(&imagebuf); let mut detector = Detector::builder() .addfamilybits(Family::tag_16h5(), 1) .build()?; let detections = detector.detect(&image); Ok(()) } ```