From d31062550357a07c75a391f13693ab8004132aa9 Mon Sep 17 00:00:00 2001 From: Jules Youngberg Date: Wed, 15 Jun 2022 13:01:42 -0700 Subject: [PATCH] remmove cxx and update readme --- Cargo.toml | 1 - README.md | 16 ++++++++-------- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index d2eb753..cbe10d4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,6 @@ name = "mediapipe" [dependencies] cgmath = "0.18.0" -cxx = "1.0.68" libc = "0.2.0" opencv = { version = "0.63", features = ["clang-runtime"] } protobuf = "2.23.0" diff --git a/README.md b/README.md index 4829abe..908ed64 100644 --- a/README.md +++ b/README.md @@ -39,14 +39,6 @@ cp bazel-bin/mediapipe/libmediagraph.so /usr/local/lib/libmediagraph.so 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 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. + +## examples + +Examples are located in the `./examples` directory. Run `face_mesh.rs` with + +```shell +cargo run --release --example face_mesh +```