Call OpenCV functions from Rust

In this and this the author explaining how to call OpenCV functions from C#.

How can I do this from Rust? Here how to make OpenCV C++ project

Have you looked at the opencv crate? The repository readme has detailed instructions. I haven't used this crate but it's in active development so it seems like a good place to start.

I've used OpenCV a lot from Python, and it can be challenging to get the libraries installed in the right places. The best bet to get up and running quickly is to install OpenCV from a binary, not build from source. OpenCV has quite a few compilation options so take care to get a binary distro with the features you want enabled.

Good luck!

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.