Checkerboard detection algorithms implemented in rust.
Right now this library only exposes a re-implementation of the algorithm described in [1, 2, 3]
The API is still unstable and will most likely evolve with more use (by me or through external feedback).
This library currently requires OpenCV 3.2 and uses opencv-rust for bindings. Please see the their repository on how to set up OpenCV to get opencv-rust to build.
```$rust use checkerboardrs::CheckerboardSpecification; use checkerboardrs::rufli::detect_checkerboard;
let spec = CheckerboardSpecification { width: 22, height: 12, }; let image = image::open(&"assets/referenceeasy/checker2212.png") .unwrap() .torgb();
let quads = detect_checkerboard(&image, &spec).expect("Did not receive a valid checkerboard."); ```
We use SemVer for versioning. For the versions available, see the tags on this repository.
This project is licensed under the MIT License - see the LICENSE.md file for details.