Interface AnnotationsKeypointCollection

Models a collection of keypoints represented by a label, a dictionary of keypoints (mapping from a (unique) label name to a keypoint), and optionally a confidence value and an attributes dictionary.

interface AnnotationsKeypointCollection {
    attributes?: Record<string, AnnotationsBoolean | AnnotationsNumerical>;
    confidence?: number;
    keypoints: Record<string, AnnotationsKeypoint>;
    label: string;
}

Properties

attributes?: Record<string, AnnotationsBoolean | AnnotationsNumerical>

Additional attributes data for a compound.

confidence?: number

The confidence score for the primitive. It should be between 0 and 1.

0

1

keypoints: Record<string, AnnotationsKeypoint>

The detected keypoints

label: string

The label describing what type of object it is