nebgnahz / cv-rs

Rust wrapper for OpenCV (manual at this point)
https://nebgnahz.github.io/cv-rs/cv/
MIT License
204 stars 41 forks source link

Fix clippy lints #109

Open vadixidav opened 5 years ago

vadixidav commented 5 years ago

I would like to go through and just slash through all the Clippy lints. Some things are breaking changes. Is this fine? For instance, an example of a breaking change would be DescriptorMatcher::add which takes a &Vec<&Mat> when it should take a &[&Mat] or IntoIterator<Item=&Mat>.

vadixidav commented 5 years ago

Clippy lints are addressed in #117.