mirror of https://github.com/vladmandic/human
15 lines
319 B
TypeScript
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>;
|