mirror of https://github.com/vladmandic/human
14 lines
345 B
TypeScript
14 lines
345 B
TypeScript
export declare class FaceBoxes {
|
|
enlarge: number;
|
|
model: any;
|
|
config: any;
|
|
constructor(model: any, config: any);
|
|
estimateFaces(input: any, config: any): Promise<{
|
|
confidence: number;
|
|
box: any;
|
|
boxRaw: any;
|
|
image: any;
|
|
}[]>;
|
|
}
|
|
export declare function load(config: any): Promise<FaceBoxes>;
|