UNPKG

cvat-sdk

Version:

CVAT SDK is a Javascript library. It provides you access to Javascript functions and objects that simplify server interaction and provide additional functionality like data validation and serialization.

14 lines (13 loc) 439 B
import type { AttributeVal } from './attribute-val'; import type { SubLabeledTrack } from './sub-labeled-track'; import type { TrackedShape } from './tracked-shape'; export interface LabeledTrack { 'id'?: number | null; 'frame': number; 'label_id': number; 'group'?: number | null; 'source'?: string; 'shapes': Array<TrackedShape>; 'attributes'?: Array<AttributeVal>; 'elements'?: Array<SubLabeledTrack>; }