2020-12-10 04:13:05 +01:00
|
|
|
---
|
|
|
|
layout: default
|
|
|
|
title: MediaPipe in JavaScript
|
|
|
|
parent: Getting Started
|
|
|
|
nav_order: 4
|
|
|
|
---
|
|
|
|
|
|
|
|
# MediaPipe in JavaScript
|
|
|
|
{: .no_toc }
|
|
|
|
|
|
|
|
1. TOC
|
|
|
|
{:toc}
|
|
|
|
---
|
|
|
|
|
2023-03-01 18:19:12 +01:00
|
|
|
**Attention:** *Thanks for your interest in MediaPipe! We are moving to
|
2023-03-01 20:54:21 +01:00
|
|
|
[https://developers.google.com/mediapipe](https://developers.google.com/mediapipe)
|
|
|
|
as the primary developer documentation
|
2023-03-01 18:19:12 +01:00
|
|
|
site for MediaPipe starting April 3, 2023. This content will not be moved to
|
|
|
|
the new site, but will remain available in the source code repository on an
|
|
|
|
as-is basis.*
|
|
|
|
|
|
|
|
*This notice and web page will be removed on April 3, 2023.*
|
|
|
|
|
|
|
|
----
|
|
|
|
|
2020-12-10 04:13:05 +01:00
|
|
|
## Ready-to-use JavaScript Solutions
|
|
|
|
|
|
|
|
MediaPipe currently offers the following solutions:
|
|
|
|
|
2021-06-03 22:13:30 +02:00
|
|
|
Solution | NPM Package | Example
|
|
|
|
--------------------------- | --------------------------------------- | -------
|
|
|
|
[Face Mesh][F-pg] | [@mediapipe/face_mesh][F-npm] | [mediapipe.dev/demo/face_mesh][F-demo]
|
|
|
|
[Face Detection][Fd-pg] | [@mediapipe/face_detection][Fd-npm] | [mediapipe.dev/demo/face_detection][Fd-demo]
|
|
|
|
[Hands][H-pg] | [@mediapipe/hands][H-npm] | [mediapipe.dev/demo/hands][H-demo]
|
|
|
|
[Holistic][Ho-pg] | [@mediapipe/holistic][Ho-npm] | [mediapipe.dev/demo/holistic][Ho-demo]
|
2021-07-24 02:09:32 +02:00
|
|
|
[Objectron][Ob-pg] | [@mediapipe/objectron][Ob-npm] | [mediapipe.dev/demo/objectron][Ob-demo]
|
2021-06-03 22:13:30 +02:00
|
|
|
[Pose][P-pg] | [@mediapipe/pose][P-npm] | [mediapipe.dev/demo/pose][P-demo]
|
|
|
|
[Selfie Segmentation][S-pg] | [@mediapipe/selfie_segmentation][S-npm] | [mediapipe.dev/demo/selfie_segmentation][S-demo]
|
2020-12-10 04:13:05 +01:00
|
|
|
|
|
|
|
Click on a solution link above for more information, including API and code
|
|
|
|
snippets.
|
|
|
|
|
2023-02-02 12:42:09 +01:00
|
|
|
### Supported platforms:
|
2021-08-19 00:18:12 +02:00
|
|
|
|
|
|
|
| Browser | Platform | Notes |
|
|
|
|
| ------- | ----------------------- | -------------------------------------- |
|
2023-02-23 17:30:01 +01:00
|
|
|
| Chrome | Android / Windows / Mac | Pixel 4 and older unsupported. Fuchsia |
|
2021-08-19 00:18:12 +02:00
|
|
|
| | | unsupported. |
|
|
|
|
| Chrome | iOS | Camera unavailable in Chrome on iOS. |
|
|
|
|
| Safari | iPad/iPhone/Mac | iOS and Safari on iPad / iPhone / |
|
|
|
|
| | | MacBook |
|
|
|
|
|
2020-12-10 04:13:05 +01:00
|
|
|
The quickest way to get acclimated is to look at the examples above. Each demo
|
|
|
|
has a link to a [CodePen][codepen] so that you can edit the code and try it
|
|
|
|
yourself. We have included a number of utility packages to help you get started:
|
|
|
|
|
|
|
|
* [@mediapipe/drawing_utils][draw-npm] - Utilities to draw landmarks and
|
|
|
|
connectors.
|
|
|
|
* [@mediapipe/camera_utils][cam-npm] - Utilities to operate the camera.
|
|
|
|
* [@mediapipe/control_utils][ctrl-npm] - Utilities to show sliders and FPS
|
|
|
|
widgets.
|
|
|
|
|
|
|
|
Note: See these demos and more at [MediaPipe on CodePen][codepen]
|
|
|
|
|
|
|
|
All of these solutions are staged in [NPM][npm]. You can install any package
|
|
|
|
locally with `npm install`. Example:
|
|
|
|
|
|
|
|
```
|
|
|
|
npm install @mediapipe/holistic.
|
|
|
|
```
|
|
|
|
|
|
|
|
If you would rather not stage these locally, you can rely on a CDN (e.g.,
|
|
|
|
[jsDelivr](https://www.jsdelivr.com/)). This will allow you to add scripts
|
|
|
|
directly to your HTML:
|
|
|
|
|
|
|
|
```
|
|
|
|
<head>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/drawing_utils@0.1/drawing_utils.js" crossorigin="anonymous"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/@mediapipe/holistic@0.1/holistic.js" crossorigin="anonymous"></script>
|
|
|
|
</head>
|
|
|
|
```
|
|
|
|
|
|
|
|
Note: You can specify version numbers to both NPM and jsdelivr. They are
|
|
|
|
structured as `<major>.<minor>.<build>`. To prevent breaking changes from
|
|
|
|
affecting your work, restrict your request to a `<minor>` number. e.g.,
|
|
|
|
`@mediapipe/holistic@0.1`.
|
|
|
|
|
|
|
|
[Ho-pg]: ../solutions/holistic#javascript-solution-api
|
|
|
|
[F-pg]: ../solutions/face_mesh#javascript-solution-api
|
2021-02-27 09:21:16 +01:00
|
|
|
[Fd-pg]: ../solutions/face_detection#javascript-solution-api
|
2020-12-10 04:13:05 +01:00
|
|
|
[H-pg]: ../solutions/hands#javascript-solution-api
|
2021-07-24 02:09:32 +02:00
|
|
|
[Ob-pg]: ../solutions/objectron#javascript-solution-api
|
2020-12-10 04:13:05 +01:00
|
|
|
[P-pg]: ../solutions/pose#javascript-solution-api
|
2021-06-03 22:13:30 +02:00
|
|
|
[S-pg]: ../solutions/selfie_segmentation#javascript-solution-api
|
2020-12-10 04:13:05 +01:00
|
|
|
[Ho-npm]: https://www.npmjs.com/package/@mediapipe/holistic
|
|
|
|
[F-npm]: https://www.npmjs.com/package/@mediapipe/face_mesh
|
2021-02-27 09:21:16 +01:00
|
|
|
[Fd-npm]: https://www.npmjs.com/package/@mediapipe/face_detection
|
2020-12-10 04:13:05 +01:00
|
|
|
[H-npm]: https://www.npmjs.com/package/@mediapipe/hands
|
2021-07-24 02:09:32 +02:00
|
|
|
[Ob-npm]: https://www.npmjs.com/package/@mediapipe/objectron
|
2020-12-10 04:13:05 +01:00
|
|
|
[P-npm]: https://www.npmjs.com/package/@mediapipe/pose
|
2021-06-03 22:13:30 +02:00
|
|
|
[S-npm]: https://www.npmjs.com/package/@mediapipe/selfie_segmentation
|
2021-04-01 01:20:27 +02:00
|
|
|
[draw-npm]: https://www.npmjs.com/package/@mediapipe/drawing_utils
|
|
|
|
[cam-npm]: https://www.npmjs.com/package/@mediapipe/camera_utils
|
|
|
|
[ctrl-npm]: https://www.npmjs.com/package/@mediapipe/control_utils
|
2020-12-10 04:13:05 +01:00
|
|
|
[Ho-demo]: https://mediapipe.dev/demo/holistic
|
|
|
|
[F-demo]: https://mediapipe.dev/demo/face_mesh
|
2021-02-27 09:21:16 +01:00
|
|
|
[Fd-demo]: https://mediapipe.dev/demo/face_detection
|
2020-12-10 04:13:05 +01:00
|
|
|
[H-demo]: https://mediapipe.dev/demo/hands
|
2021-07-24 02:09:32 +02:00
|
|
|
[Ob-demo]: https://mediapipe.dev/demo/objectron
|
2020-12-10 04:13:05 +01:00
|
|
|
[P-demo]: https://mediapipe.dev/demo/pose
|
2021-06-03 22:13:30 +02:00
|
|
|
[S-demo]: https://mediapipe.dev/demo/selfie_segmentation
|
2020-12-10 04:13:05 +01:00
|
|
|
[npm]: https://www.npmjs.com/package/@mediapipe
|
|
|
|
[codepen]: https://code.mediapipe.dev/codepen
|