mirror of https://github.com/vladmandic/human
9 lines
305 B
TypeScript
9 lines
305 B
TypeScript
/**
|
|
* HandPose module entry point
|
|
*/
|
|
import { Hand } from '../result';
|
|
import { Tensor } from '../tfjs/types';
|
|
import { Config } from '../config';
|
|
export declare function predict(input: Tensor, config: Config): Promise<Hand[]>;
|
|
export declare function load(config: Config): Promise<[unknown, unknown]>;
|