Interface ObjectDetectionResult

Hierarchy

Properties

boundingBox?: [number, number, number, number]

x, y, width, height

zoneHistory?: {
    [zone: string]: ObjectDetectionHistory;
}

Type declaration

zones?: string[]
id?: string

The id of the tracked object.

cost?: number

The certainty that this is correct tracked object.

className: string

The detection class of the object.

name?: string

The name of the object, if it was recognized as a familiar object (person, pet, etc).

score: number
resources?: VideoResource
movement?: ObjectDetectionHistory & {
    moving?: boolean;
}

Movement history will track the first/last time this object was moving.

Generated using TypeDoc