From 5cb1ecc9b365a9dfdb6ff60dc229c3d7736691c9 Mon Sep 17 00:00:00 2001 From: Vishwa2684 Date: Tue, 24 Mar 2026 16:38:19 +0530 Subject: [PATCH 1/2] Added docker run command for windows --- demos/real_time_stream_analysis/python/README.md | 4 ++++ 1 file changed, 4 insertions(+) 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 From 5e9ee11b2c68337ff79e2800e9f4cb70da7fca4b Mon Sep 17 00:00:00 2001 From: Vishwa2684 Date: Tue, 24 Mar 2026 16:38:52 +0530 Subject: [PATCH 2/2] added holistic tracking models to .gitignore --- demos/mediapipe/holistic_tracking/.gitignore | 8 ++++++++ 1 file changed, 8 insertions(+) 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