human/types/src/persons.d.ts

6 lines
326 B
TypeScript
Raw Normal View History

2021-05-25 14:58:20 +02:00
/**
* Module that analyzes existing results and recombines them into a unified person object
*/
import { Face, Body, Hand, Gesture, Person } from './result';
2021-05-25 14:58:20 +02:00
export declare function join(faces: Array<Face>, bodies: Array<Body>, hands: Array<Hand>, gestures: Array<Gesture>, shape: Array<number> | undefined): Array<Person>;