Crates.io | opencvmini |
lib.rs | opencvmini |
version | 0.1.0 |
source | src |
created_at | 2023-07-31 05:10:47.856186 |
updated_at | 2023-07-31 05:10:47.856186 |
description | Rust SDK of wasmedge plugin opencvmini |
homepage | |
repository | |
max_upload_size | |
id | 930514 |
size | 16,123 |
Rust SDK for WasmEdge Plugin OpenCVMini
Add dependency into Cargo.toml
opencvmini = "*"
then you can use this crate
use opencvmini::*;
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`