remmove cxx and update readme

This commit is contained in:
Jules Youngberg 2022-06-15 13:01:42 -07:00
parent c6377f857c
commit d310625503
2 changed files with 8 additions and 9 deletions

View File

@ -13,7 +13,6 @@ name = "mediapipe"
[dependencies] [dependencies]
cgmath = "0.18.0" cgmath = "0.18.0"
cxx = "1.0.68"
libc = "0.2.0" libc = "0.2.0"
opencv = { version = "0.63", features = ["clang-runtime"] } opencv = { version = "0.63", features = ["clang-runtime"] }
protobuf = "2.23.0" protobuf = "2.23.0"

View File

@ -39,14 +39,6 @@ cp bazel-bin/mediapipe/libmediagraph.so /usr/local/lib/libmediagraph.so
cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h cp mediapipe/mediagraph.h /usr/local/include/mediagraph.h
``` ```
## examples
Examples are located in the `./examples` directory. Run `face_mesh.rs` with
```shell
cargo run --release --example face_mesh
```
## usage ## usage
Add the following to your dependencies list in `Cargo.toml`: Add the following to your dependencies list in `Cargo.toml`:
@ -63,3 +55,11 @@ cp -R ../mediapipe/mediapipe/modules ./mediapipe/modules
``` ```
The path to mediapipe may be different depending on where you have cloned it to. The path to mediapipe may be different depending on where you have cloned it to.
## examples
Examples are located in the `./examples` directory. Run `face_mesh.rs` with
```shell
cargo run --release --example face_mesh
```