human/types/posenet/posenet.d.ts

7 lines
204 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* PoseNet module entry point
*/
2021-05-22 19:17:07 +02:00
import { Body } from '../result';
export declare function predict(input: any, config: any): Promise<Body[]>;
2021-04-24 22:04:49 +02:00
export declare function load(config: any): Promise<any>;