diff --git a/demos/mediapipe/holistic_tracking/.gitignore b/demos/mediapipe/holistic_tracking/.gitignore index c6ee1c7ffa..21ce864183 100644 --- a/demos/mediapipe/holistic_tracking/.gitignore +++ b/demos/mediapipe/holistic_tracking/.gitignore @@ -4,3 +4,11 @@ ovms *.jpg venv .venv +face_detection_short_range +face_landmark +hand_landmark_full +hand_recrop +iris_landmark +palm_detection_full +pose_detection +pose_landmark_full \ No newline at end of file diff --git a/demos/real_time_stream_analysis/python/README.md b/demos/real_time_stream_analysis/python/README.md index 4c57021cd9..efc329a103 100644 --- a/demos/real_time_stream_analysis/python/README.md +++ b/demos/real_time_stream_analysis/python/README.md @@ -63,8 +63,12 @@ curl https://storage.googleapis.com/mediapipe-assets/pose_detection.tflite -o po curl https://storage.googleapis.com/mediapipe-assets/pose_landmark_full.tflite -o pose_landmark_full/1/pose_landmark_full.tflite --create-dirs ``` ```bash +# In Ubuntu, run this command in terminal chmod -R 755 . docker run -d -v $PWD/mediapipe:/mediapipe -v $PWD:/models -p 9000:9000 openvino/model_server:latest --config_path /models/config_holistic.json --port 9000 +# In windows, run this command in powershell +docker run -d -v ${PWD}/mediapipe:/mediapipe -v ${PWD}:/models -p 9000:9000 openvino/model_server:latest --config_path /models/config_holistic.json --port 9000 + ``` ```bat ovms --config_path config_holistic.json --port 9000