This crates exports functions and types that can be used to search for QR-Codes in images and decode them.
The most basic usage is shown below:
```rust use image; use rqrr;
let img = image::open("tests/data/github.gif").unwrap(); let codes = rqrr::findanddecodefromimage(&img); asserteq!(codes.len(), 1); asserteq!(codes[0].val, "https://github.com/WanzenBug/rqrr"); ``` For more information visit docs.rs
This library was made on the base of quirc