Skip to content

Commit

Permalink
Quick start (#37)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasapala authored Sep 18, 2023
1 parent d1d9a62 commit ac27250
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions docs/quickstartguide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# Quick start guide
- Building docker container with dependencies
```bash
git clone https://github.com/openvinotoolkit/mediapipe.git
cd mediapipe
make docker_build
```
- You can check the integrity of the built image by running tests
```bash
make tests
```

- Running demo applications inside mediapipe_ovms container
```bash
docker run -it mediapipe_ovms:latest bash
```

- Running object detection demo inside mediapipe_ovms container
```bash
make run_object_detection
```

- Running holistic tracking demo inside mediapipe_ovms container
```bash
make run_holistic_tracking
```

- Running iris tracking demo inside mediapipe_ovms container
```bash
make run_iris_tracking
```

- Running pose tracking demo inside mediapipe_ovms container
```bash
make run_pose_tracking
```

- Running face detection demo inside mediapipe_ovms container
```bash
make run_face_detection
```

0 comments on commit ac27250

Please sign in to comment.