UNPKG

face-api.js

Version:

JavaScript API for face detection and face recognition in the browser with tensorflow.js

9 lines 248 B
import { Mtcnn } from './Mtcnn'; export * from './Mtcnn'; export * from './MtcnnOptions'; export function createMtcnn(weights) { var net = new Mtcnn(); net.extractWeights(weights); return net; } //# sourceMappingURL=index.js.map