2020-08-18 14:04:33 +02:00
|
|
|
import { TNetInput } from '../dom';
|
|
|
|
import { WithFaceDescriptor, WithFaceDetection, WithFaceLandmarks } from '../factories';
|
|
|
|
import { ITinyYolov2Options } from '../tinyYolov2';
|
2020-08-26 00:24:48 +02:00
|
|
|
export declare function allFacesSsdMobilenetv1(input: TNetInput, minConfidence?: number): Promise<WithFaceDescriptor<WithFaceLandmarks<WithFaceDetection<{}>>>[]>;
|
2020-08-18 14:04:33 +02:00
|
|
|
export declare function allFacesTinyYolov2(input: TNetInput, forwardParams?: ITinyYolov2Options): Promise<WithFaceDescriptor<WithFaceLandmarks<WithFaceDetection<{}>>>[]>;
|
2020-08-26 00:24:48 +02:00
|
|
|
export declare const allFaces: typeof allFacesSsdMobilenetv1;
|
|
|
|
//# sourceMappingURL=allFaces.d.ts.map
|