UNPKG

kalidokit

Version:

Blendshape and kinematics calculator for Mediapipe/Tensorflow.js Face, Eyes, Pose, and Finger tracking models.

17 lines (16 loc) 331 B
import { Results } from "../Types"; /** * Calculate Mouth Shape * @param {Array} lm : array of results from tfjs or mediapipe */ export declare const calcMouth: (lm: Results) => { x: number; y: number; shape: { A: number; E: number; I: number; O: number; U: number; }; };