forked from google-ai-edge/mediapipe
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
``` |