human/types/blazeface/facemesh.d.ts

15 lines
410 B
TypeScript
Raw Normal View History

2021-04-25 22:56:10 +02:00
export declare function predict(input: any, config: any): Promise<{
confidence: any;
boxConfidence: any;
faceConfidence: any;
box: any;
mesh: any;
boxRaw: any;
meshRaw: any;
annotations: any;
image: any;
}[]>;
export declare function load(config: any): Promise<[Object, Object, Object]>;
2021-03-25 13:43:51 +01:00
export declare const triangulation: number[];
2021-03-29 21:59:16 +02:00
export declare const uvmap: number[][];