Rust SDK for WasmEdge Plugin OpenCVMini
Add dependency into Cargo.toml
toml
opencvmini = "*"
then you can use this crate
rust
use opencvmini::*;
opencvmini is a wasmedge plugin, you might like to clone repository WasmEdge, and run the following commands to install this plugin.
```shell
mkdir build && cd build
cmake -DCMAKEBUILDTYPE=Release -DWASMEDGEBUILDPLUGINS=ON \
-DWASMEDGEPLUGINOPENCVMINI=ON \
-DWASMEDGEPLUGINTENSORFLOWLITE=ON \
-DWASMEDGEPLUGINIMAGE=ON \
-GNinja ..
ninja
ninja install # might need sudo
```