From eb4607ea559bccbb70da7595d06117075099b454 Mon Sep 17 00:00:00 2001 From: Jules Youngberg Date: Sun, 12 Jun 2022 11:04:51 -0700 Subject: [PATCH] update readme with mediapipe modules instructions --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 33b6096..10d5123 100644 --- a/README.md +++ b/README.md @@ -50,3 +50,14 @@ Add the following to your dependencies list in `Cargo.toml`: ```toml ux-mediapipe = { git = "https://github.com/julesyoungberg/ux-mediapipe" } ``` + +Mediapipe relies on tflite files which must be available at `./mediapipe/modules/`. The easiest way to do this is + +```shell +mkdir mediapipe +cp -R ../mediapipe/mediapipe/modules ./mediapipe/modules +``` + +The path to mediapipe may be different depending on where you've cloned it. + +Also this copies all of mediapipe's tflite files rather than only the few needed.