7 lines
611 B
TypeScript
7 lines
611 B
TypeScript
![]() |
import { TNetInput } from '../dom';
|
||
|
import { WithFaceDescriptor, WithFaceDetection, WithFaceLandmarks } from '../factories';
|
||
|
import { ITinyYolov2Options } from '../tinyYolov2';
|
||
|
export declare function allFacesSsdMobilenetv1(input: TNetInput, minConfidence?: number): Promise<WithFaceDescriptor<WithFaceLandmarks<WithFaceDetection<{}>>>[]>;
|
||
|
export declare function allFacesTinyYolov2(input: TNetInput, forwardParams?: ITinyYolov2Options): Promise<WithFaceDescriptor<WithFaceLandmarks<WithFaceDetection<{}>>>[]>;
|
||
|
export declare const allFaces: typeof allFacesSsdMobilenetv1;
|
||
|
//# sourceMappingURL=allFaces.d.ts.map
|