Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions demos/mediapipe/holistic_tracking/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 4 additions & 0 deletions demos/real_time_stream_analysis/python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down