opencvmini

Crates.ioopencvmini
lib.rsopencvmini
version0.1.0
sourcesrc
created_at2023-07-31 05:10:47.856186
updated_at2023-07-31 05:10:47.856186
descriptionRust SDK of wasmedge plugin opencvmini
homepage
repository
max_upload_size
id930514
size16,123
Lîm Tsú-thuàn (dannypsnl)

documentation

README

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`
Commit count: 0

cargo fmt