human/types/posenet/posenet.d.ts

9 lines
308 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';
2021-06-03 15:41:53 +02:00
import { Tensor, GraphModel } from '../tfjs/types';
import { Config } from '../config';
export declare function predict(input: Tensor, config: Config): Promise<Body[]>;
export declare function load(config: Config): Promise<GraphModel>;