Back to Libraries
MediaPipe
28k
Google ML solutions for face, hand, and pose detection
License
Apache-2.0
Released
2019
Stars
28k
Use Cases
Hand tracking, pose estimation, face mesh, gesture recognition, AR filters
Code Example
import { FaceLandmarker, FilesetResolver } from '@mediapipe/tasks-vision';
const vision = await FilesetResolver.forVisionTasks('...');
const landmarker = await FaceLandmarker.createFromOptions(vision, { ... });
const results = landmarker.detect(image);