mirror of https://github.com/vladmandic/human
20 lines
524 B
TypeScript
20 lines
524 B
TypeScript
export declare class HandPose {
|
|
handPipeline: any;
|
|
constructor(handPipeline: any);
|
|
static getAnnotations(): {
|
|
thumb: number[];
|
|
indexFinger: number[];
|
|
middleFinger: number[];
|
|
ringFinger: number[];
|
|
pinky: number[];
|
|
palmBase: number[];
|
|
};
|
|
estimateHands(input: any, config: any): Promise<{
|
|
confidence: number;
|
|
box: any;
|
|
landmarks: any;
|
|
annotations: any;
|
|
}[]>;
|
|
}
|
|
export declare function load(config: any): Promise<HandPose>;
|