opencvmini 0.1.0

Rust SDK of wasmedge plugin opencvmini
docs.rs failed to build opencvmini-0.1.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.

opencvmini

Rust SDK for WasmEdge Plugin OpenCVMini

Usage

Add dependency into Cargo.toml

opencvmini = "*"

then you can use this crate

use opencvmini::*;

Dependencies

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

# In repository wasmedge
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=Release -DWASMEDGE_BUILD_PLUGINS=ON \
  -DWASMEDGE_PLUGIN_OPENCVMINI=ON \
  -DWASMEDGE_PLUGIN_TENSORFLOWLITE=ON \
  -DWASMEDGE_PLUGIN_IMAGE=ON \
  -GNinja ..
ninja
ninja install # might need `sudo`