human/types/handpose/handpose.d.ts

21 lines
545 B
TypeScript
Raw Normal View History

2021-02-08 18:47:38 +01:00
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;
2021-03-17 19:35:11 +01:00
boxRaw: any;
2021-02-08 18:47:38 +01:00
landmarks: any;
annotations: any;
}[]>;
}
export declare function load(config: any): Promise<HandPose>;