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) • 597 B
TypeScript
export declare const AnnotationConflictTypeEnum: {
readonly MissingAnnotation: "missing_annotation";
readonly ExtraAnnotation: "extra_annotation";
readonly MismatchingLabel: "mismatching_label";
readonly LowOverlap: "low_overlap";
readonly MismatchingDirection: "mismatching_direction";
readonly MismatchingAttributes: "mismatching_attributes";
readonly MismatchingGroups: "mismatching_groups";
readonly CoveredAnnotation: "covered_annotation";
};
export type AnnotationConflictTypeEnum = typeof AnnotationConflictTypeEnum[keyof typeof AnnotationConflictTypeEnum];