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) • 374 B
TypeScript
import type { AttributeVal } from './attribute-val';
import type { ShapeType } from './shape-type';
export interface TrackedShape {
'type': ShapeType;
'occluded'?: boolean;
'outside'?: boolean;
'z_order'?: number;
'rotation'?: number;
'points'?: Array<number>;
'id'?: number | null;
'frame': number;
'attributes'?: Array<AttributeVal>;
}