2021-05-25 14:58:20 +02:00
|
|
|
/**
|
|
|
|
* FaceMesh & BlazeFace Module entry point
|
|
|
|
*/
|
2021-06-03 15:41:53 +02:00
|
|
|
import { Tensor } from '../tfjs/types';
|
2021-06-01 14:59:09 +02:00
|
|
|
import { Face } from '../result';
|
2021-06-03 15:41:53 +02:00
|
|
|
import { Config } from '../config';
|
|
|
|
export declare function predict(input: Tensor, config: Config): Promise<Face[]>;
|
2021-05-23 03:47:59 +02:00
|
|
|
export declare function load(config: any): Promise<[unknown, unknown, unknown]>;
|
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[][];
|