Interface PersonResult

Person getter

  • Triggers combining all individual results into a virtual person object
interface PersonResult {
    body: null | BodyResult;
    box: Box;
    boxRaw?: Box;
    face: FaceResult;
    gestures: GestureResult[];
    hands: {
        left: null | HandResult;
        right: null | HandResult;
    };
    id: number;
}

Properties

body: null | BodyResult

body result that belongs to this person

box: Box

box that defines the person

boxRaw?: Box

box that defines the person normalized to 0..1

face result that belongs to this person

gestures: GestureResult[]

detected gestures specific to this person

hands: {
    left: null | HandResult;
    right: null | HandResult;
}

left and right hand results that belong to this person

Type declaration

id: number

person id