https://github.com/polygonjs/plugin-mediapipe-facemesh
Mediapipe plugins to create a face mesh from a webcam or video
https://github.com/polygonjs/plugin-mediapipe-facemesh
Last synced: 10 months ago
JSON representation
Mediapipe plugins to create a face mesh from a webcam or video
- Host: GitHub
- URL: https://github.com/polygonjs/plugin-mediapipe-facemesh
- Owner: polygonjs
- License: mit
- Created: 2021-11-05T15:35:53.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-15T12:33:24.000Z (over 3 years ago)
- Last Synced: 2025-09-01T02:13:52.277Z (10 months ago)
- Language: TypeScript
- Size: 562 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: MIT-LICENSE
Awesome Lists containing this project
README
# DEPRECATED
This repository is not used anymore, as the nodes have been fully integrated into the [core engine](https://polygonjs.com). See [live examples scenes](https://polygonjs.com/docs/examples-category/Computer%20Vision)
# Polygonjs Mediapipe Facemesh Plugin
This adds a Mediapipe Facemesh SOP nodes to the [Polygonjs webgl engine](https://polygonjs.com).
# Install
Import the plugin:
`yarn add @polygonjs/plugin-mediapipe-facemesh`
And register the plugin in the function `configurePolygonjs` in the file `PolyConfig.js` so that the facemesh nodes can be accessible in both the editor and your exported scene:
```js
import {polyPluginMediapipeFacemesh} from '@polygonjs/plugin-mediapipe-facemesh/dist/src/index';
export function configurePolygonjs(poly) {
poly.registerPlugin(polyPluginMediapipeFacemesh);
}
```