10 lines
281 B
TypeScript
10 lines
281 B
TypeScript
![]() |
import { TinyFaceDetector } from './TinyFaceDetector';
|
||
|
|
||
|
export * from './TinyFaceDetector';
|
||
|
export * from './TinyFaceDetectorOptions';
|
||
|
|
||
|
export function createTinyFaceDetector(weights: Float32Array) {
|
||
|
const net = new TinyFaceDetector()
|
||
|
net.extractWeights(weights)
|
||
|
return net
|
||
|
}
|