cv-rs
cv-rs copied to clipboard
Rust wrapper for OpenCV (manual at this point)
It may be profitable to use https://github.com/dtolnay/cxx Of course it's early alpha but it may be the way from the dead end.
They shouldn't implement `Clone` trait since they work with raw pointers.
It seems like some operations mutate `Mat` without requiring `Mat` to be mutable such as [`ellipse`](https://nebgnahz.github.io/cv-rs/cv/mat/struct.Mat.html#method.ellipse). This could result in a data race. These should be corrected to have correct...
TL;DR: It should be possible to specify exactly what features you want using cargo, and it should "just work." Currently there is some intermingling between `features2d` and `xfeatures2d`. OpenCV also...
We should update our submodules to OpenCV `3.4.5`. We don't need to go to 4.x yet, but we can figure that out later.
Following up on issue #105. Does it look sane to you? Please do not pull yet. I want to add more of its methods.
The text module, contained within opencv_contrib should be an optional part of the build for cv-rs because the current homebrew opencv does not include opencv_contrib/text by default. There is a...
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...
OpenCV should also be able to be built and linked statically through the help of the `cmake` crate. It does not always need to be used this way, but I...