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.
15 lines (14 loc) • 405 B
TypeScript
import type { LabelMappingEntryRequest } from './label-mapping-entry-request';
export interface FunctionCallRequest {
'function': string;
'task': number;
'job'?: number;
'max_distance'?: number;
'threshold'?: number;
'cleanup'?: boolean;
'convMaskToPoly'?: boolean;
'conv_mask_to_poly'?: boolean;
'mapping'?: {
[key: string]: LabelMappingEntryRequest;
};
}