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.
10 lines (9 loc) • 322 B
TypeScript
import type { LabeledImage } from './labeled-image';
import type { LabeledShape } from './labeled-shape';
import type { LabeledTrack } from './labeled-track';
export interface LabeledData {
'version'?: number;
'tags'?: Array<LabeledImage>;
'shapes'?: Array<LabeledShape>;
'tracks'?: Array<LabeledTrack>;
}