export declare const GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType: { readonly StringAggregationTypeUnspecified: "STRING_AGGREGATION_TYPE_UNSPECIFIED"; /** * Majority vote to aggregate answers. */ readonly MajorityVote: "MAJORITY_VOTE"; /** * Unanimous answers will be adopted. */ readonly UnanimousVote: "UNANIMOUS_VOTE"; /** * Preserve all answers by crowd compute. */ readonly NoAggregation: "NO_AGGREGATION"; }; /** * Optional. The type of how to aggregate answers. */ export type GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType = (typeof GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType)[keyof typeof GoogleCloudDatalabelingV1beta1ImageClassificationConfigAnswerAggregationType]; export declare const GoogleCloudDatalabelingV1beta1InputConfigAnnotationType: { readonly AnnotationTypeUnspecified: "ANNOTATION_TYPE_UNSPECIFIED"; /** * Classification annotations in an image. Allowed for continuous evaluation. */ readonly ImageClassificationAnnotation: "IMAGE_CLASSIFICATION_ANNOTATION"; /** * Bounding box annotations in an image. A form of image object detection. Allowed for continuous evaluation. */ readonly ImageBoundingBoxAnnotation: "IMAGE_BOUNDING_BOX_ANNOTATION"; /** * Oriented bounding box. The box does not have to be parallel to horizontal line. */ readonly ImageOrientedBoundingBoxAnnotation: "IMAGE_ORIENTED_BOUNDING_BOX_ANNOTATION"; /** * Bounding poly annotations in an image. */ readonly ImageBoundingPolyAnnotation: "IMAGE_BOUNDING_POLY_ANNOTATION"; /** * Polyline annotations in an image. */ readonly ImagePolylineAnnotation: "IMAGE_POLYLINE_ANNOTATION"; /** * Segmentation annotations in an image. */ readonly ImageSegmentationAnnotation: "IMAGE_SEGMENTATION_ANNOTATION"; /** * Classification annotations in video shots. */ readonly VideoShotsClassificationAnnotation: "VIDEO_SHOTS_CLASSIFICATION_ANNOTATION"; /** * Video object tracking annotation. */ readonly VideoObjectTrackingAnnotation: "VIDEO_OBJECT_TRACKING_ANNOTATION"; /** * Video object detection annotation. */ readonly VideoObjectDetectionAnnotation: "VIDEO_OBJECT_DETECTION_ANNOTATION"; /** * Video event annotation. */ readonly VideoEventAnnotation: "VIDEO_EVENT_ANNOTATION"; /** * Classification for text. Allowed for continuous evaluation. */ readonly TextClassificationAnnotation: "TEXT_CLASSIFICATION_ANNOTATION"; /** * Entity extraction for text. */ readonly TextEntityExtractionAnnotation: "TEXT_ENTITY_EXTRACTION_ANNOTATION"; /** * General classification. Allowed for continuous evaluation. */ readonly GeneralClassificationAnnotation: "GENERAL_CLASSIFICATION_ANNOTATION"; }; /** * Optional. The type of annotation to be performed on this data. You must specify this field if you are using this InputConfig in an EvaluationJob. */ export type GoogleCloudDatalabelingV1beta1InputConfigAnnotationType = (typeof GoogleCloudDatalabelingV1beta1InputConfigAnnotationType)[keyof typeof GoogleCloudDatalabelingV1beta1InputConfigAnnotationType]; export declare const GoogleCloudDatalabelingV1beta1InputConfigDataType: { /** * Data type is unspecified. */ readonly DataTypeUnspecified: "DATA_TYPE_UNSPECIFIED"; /** * Allowed for continuous evaluation. */ readonly Image: "IMAGE"; /** * Video data type. */ readonly Video: "VIDEO"; /** * Allowed for continuous evaluation. */ readonly Text: "TEXT"; /** * Allowed for continuous evaluation. */ readonly GeneralData: "GENERAL_DATA"; }; /** * Required. Data type must be specifed when user tries to import data. */ export type GoogleCloudDatalabelingV1beta1InputConfigDataType = (typeof GoogleCloudDatalabelingV1beta1InputConfigDataType)[keyof typeof GoogleCloudDatalabelingV1beta1InputConfigDataType]; export declare const InstructionDataType: { /** * Data type is unspecified. */ readonly DataTypeUnspecified: "DATA_TYPE_UNSPECIFIED"; /** * Allowed for continuous evaluation. */ readonly Image: "IMAGE"; /** * Video data type. */ readonly Video: "VIDEO"; /** * Allowed for continuous evaluation. */ readonly Text: "TEXT"; /** * Allowed for continuous evaluation. */ readonly GeneralData: "GENERAL_DATA"; }; /** * Required. The data type of this instruction. */ export type InstructionDataType = (typeof InstructionDataType)[keyof typeof InstructionDataType];