human/types/blazepose/blazepose.d.ts

9 lines
298 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* BlazePose Module
*/
2021-06-03 15:41:53 +02:00
import { Tensor, GraphModel } from '../tfjs/types';
import { Body } from '../result';
2021-06-03 15:41:53 +02:00
import { Config } from '../config';
export declare function load(config: Config): Promise<GraphModel>;
export declare function predict(image: Tensor, config: Config): Promise<Body[]>;