mirror of https://github.com/vladmandic/human
9 lines
298 B
TypeScript
9 lines
298 B
TypeScript
/**
|
|
* BlazePose Module
|
|
*/
|
|
import { Tensor, GraphModel } from '../tfjs/types';
|
|
import { Body } from '../result';
|
|
import { Config } from '../config';
|
|
export declare function load(config: Config): Promise<GraphModel>;
|
|
export declare function predict(image: Tensor, config: Config): Promise<Body[]>;
|