UNPKG

@vladmandic/face-api

Version:

JavaScript module for Face Detection and Face Recognition Using Tensorflow/JS

9 lines 308 B
import { TinyFaceDetector } from './TinyFaceDetector'; export * from './TinyFaceDetector'; export * from './TinyFaceDetectorOptions'; export function createTinyFaceDetector(weights) { const net = new TinyFaceDetector(); net.extractWeights(weights); return net; } //# sourceMappingURL=index.js.map