From 85ed858301b1c1775640d96dd2fd513c19227ce1 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Sat, 29 May 2021 20:33:33 -0400 Subject: [PATCH] more README --- README.md | 34 ++++++++++++++++++++++++++++++---- 1 file changed, 30 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 6ebb672..c453263 100644 --- a/README.md +++ b/README.md @@ -39,11 +39,37 @@ The result is a raw camera view with depth data overlayed on top of it. | -- | -- | -- | | ![](assets/demo1.png) | ![](assets/demo2.png) | ![](assets/demo3.png) | - \ No newline at end of file +With those installed, pull in all the Python dependencies with: + +```sh +pip3 install -r requirements.txt +``` + +Then, build the Rust and C++ code with: + +```sh +cargo build +``` + +To run OpenDepthMap, you must first start the LeapMotion driver with: + +```sh +sudo leapd +``` + +Then start OpenDepthMap with: + +```sh +./scripts/odm.sh +``` + +If you get a timeout error, ensure your LeapMotion device is connected, and try re-running OpenDepthMap.