opencv-rust icon indicating copy to clipboard operation
opencv-rust copied to clipboard

Rust bindings for OpenCV 3 & 4

Results 116 opencv-rust issues
Sort by recently updated
recently updated
newest added

This is an issue to suggest that types follow [Rust naming conventions](https://doc.rust-lang.org/1.0.0/style/style/naming/README.html). Structs, enums, and traits follow CamelCase. Constants follow SCREAMING_SNAKE_CASE. This affects a lot of types prefixed with `Detail_`....

1. Operating system: Alpine 3.14 2. The way you installed OpenCV: package, 3. OpenCV version: opencv4 4. rustc version (`rustc --version`): rustc 1.58.0 I trying to compile statically. And I...

Howdy! I'm trying to specify the parameters to link with my build of OpenCV and I have a bit of a problem. ```powershell $env:OPENCV_LINK_PATHS = "$env:KPNS_VENDOR_ROOT\x64\vc16\staticlib,$env:CUDA_PATH\lib\x64" $env:OPENCV_LINK_LIBS = "zlib,libjpeg-turbo,libjasper,ippiw,ittnotify,ade,cudart_static,cublas,cufft,opencv_world452" $env:OPENCV_INCLUDE_PATHS...

This crate has come a long way since we last looked at an opencv wrapper! We've been using another rust port of opencv that we've forked at https://github.com/vivint-smarthome/rustcv/tree/dnn that also...

I'm having an issue when building opencv-rust with nix. I got a **Permission denied** error. The build system is probably trying to write or delete some file in a folder...

- OS: Windows 11 - OpenCV: v4.5.3 installed with vcpkg - LLVM: installed from official binary distribution; `llvm-config.exe` compiled by hand - rustc version: 1.56.1 - Library version: 0.60.0 (also...

I've had [docs.rs add](https://github.com/rust-lang/crates-build-env/pull/91) `libopencv-dev` to their installed packages, thinking that was the only thing preventing their docker image to build `opencv-rust`. Turns out there are more problems, can you...

Hi thanks for the lib! I have a `ndarray::Array` (or `image::Image` or something like that) that holds data. Then I want to use some opencv functions, so I want to...

Hi thanks for this lib! I wonder how we can have support for SIMD, i.e. universal intrinsics? Because this can boost the speed by, say, 4x!

Hi thanks for this binding! I am thinking about the following situation: We know multiple Mat can share the same underlying uchar* buffer. Therefore, we can write: ``` fn copy(dst:...