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.
24 lines (23 loc) • 846 B
TypeScript
import type { PointSizeBaseEnum } from './point-size-base-enum';
import type { TargetMetricEnum } from './target-metric-enum';
export interface QualitySettings {
'id'?: number;
'task_id'?: number;
'target_metric'?: TargetMetricEnum;
'target_metric_threshold'?: number;
'max_validations_per_job'?: number;
'iou_threshold'?: number;
'oks_sigma'?: number;
'point_size_base'?: PointSizeBaseEnum;
'line_thickness'?: number;
'low_overlap_threshold'?: number;
'compare_line_orientation'?: boolean;
'line_orientation_threshold'?: number;
'compare_groups'?: boolean;
'group_match_threshold'?: number;
'check_covered_annotations'?: boolean;
'object_visibility_threshold'?: number;
'panoptic_comparison'?: boolean;
'compare_attributes'?: boolean;
'empty_is_annotated'?: boolean;
}