human/types/blazepose/blazepose.d.ts

15 lines
319 B
TypeScript

export declare function load(config: any): Promise<any>;
export declare function predict(image: any, config: any): Promise<{
keypoints: {
id: any;
part: any;
position: {
x;
y;
z;
};
score: any;
presence: any;
}[];
}[] | null>;