UNPKG

@vladmandic/face-api

Version:

FaceAPI: AI-powered Face Detection & Rotation Tracking, Face Description & Recognition, Age & Gender & Emotion Prediction for Browser and NodeJS using TensorFlow/JS

11 lines (8 loc) 285 B
import { TinyFaceDetector } from './TinyFaceDetector'; export * from './TinyFaceDetector'; export * from './TinyFaceDetectorOptions'; export function createTinyFaceDetector(weights: Float32Array) { const net = new TinyFaceDetector(); net.extractWeights(weights); return net; }