face-api/src/tinyFaceDetector/index.ts

10 lines
281 B
TypeScript
Raw Normal View History

2020-08-18 13:54:53 +02:00
import { TinyFaceDetector } from './TinyFaceDetector';
export * from './TinyFaceDetector';
export * from './TinyFaceDetectorOptions';
export function createTinyFaceDetector(weights: Float32Array) {
const net = new TinyFaceDetector()
net.extractWeights(weights)
return net
}