opencvmini

Rust SDK for WasmEdge Plugin OpenCVMini

Usage

Add dependency into Cargo.toml

toml opencvmini = "*"

then you can use this crate

rust use opencvmini::*;

Dependencies

opencvmini is a wasmedge plugin, you might like to clone repository WasmEdge, and run the following commands to install this plugin.

```shell

In repository wasmedge

mkdir build && cd build cmake -DCMAKEBUILDTYPE=Release -DWASMEDGEBUILDPLUGINS=ON \ -DWASMEDGEPLUGINOPENCVMINI=ON \ -DWASMEDGEPLUGINTENSORFLOWLITE=ON \ -DWASMEDGEPLUGINIMAGE=ON \ -GNinja .. ninja ninja install # might need sudo ```