9 lines
308 B
JavaScript
9 lines
308 B
JavaScript
![]() |
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
|