twistedfall / opencv-rust

Rust bindings for OpenCV 3 & 4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

unresolved imports `opencv::cudafilters`, `opencv::cudaimgproc` no `cudafilters` in the root

DennisZhangOiler opened this issue · comments

Hi I am trying to run code in example/cuda, but it failed to find those 2 modules, and it's strange that on docs it's in default feature.

Looks like your OpenCV installation doesn't have CUDA support that's why those modules are missing. To include CUDA support you most likely need to build OpenCV manually. Pre-built binary packages rarely contain it.

Looks like your OpenCV installation doesn't have CUDA support that's why those modules are missing. To include CUDA support you most likely need to build OpenCV manually. Pre-built binary packages rarely contain it.

Thanks!