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.
12 lines (11 loc) • 341 B
TypeScript
import type { AttributeVal } from './attribute-val';
import type { TrackedShape } from './tracked-shape';
export interface SubLabeledTrack {
'id'?: number | null;
'frame': number;
'label_id': number;
'group'?: number | null;
'source'?: string;
'shapes': Array<TrackedShape>;
'attributes'?: Array<AttributeVal>;
}