Show / Hide Table of Contents

Class LabelImageRequest

Request message for starting an image labeling task.

Inheritance
System.Object
LabelImageRequest
Implements
IMessage<LabelImageRequest>
System.IEquatable<LabelImageRequest>
IDeepCloneable<LabelImageRequest>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class LabelImageRequest : IMessage<LabelImageRequest>, IEquatable<LabelImageRequest>, IDeepCloneable<LabelImageRequest>, IBufferMessage, IMessage

Constructors

LabelImageRequest()

Declaration
public LabelImageRequest()

LabelImageRequest(LabelImageRequest)

Declaration
public LabelImageRequest(LabelImageRequest other)
Parameters
Type Name Description
LabelImageRequest other

Properties

BasicConfig

Required. Basic human annotation config.

Declaration
public HumanAnnotationConfig BasicConfig { get; set; }
Property Value
Type Description
HumanAnnotationConfig

BoundingPolyConfig

Configuration for bounding box and bounding poly task. One of image_classification_config, bounding_poly_config, polyline_config and segmentation_config are required.

Declaration
public BoundingPolyConfig BoundingPolyConfig { get; set; }
Property Value
Type Description
BoundingPolyConfig

Feature

Required. The type of image labeling task.

Declaration
public LabelImageRequest.Types.Feature Feature { get; set; }
Property Value
Type Description
LabelImageRequest.Types.Feature

ImageClassificationConfig

Configuration for image classification task. One of image_classification_config, bounding_poly_config, polyline_config and segmentation_config are required.

Declaration
public ImageClassificationConfig ImageClassificationConfig { get; set; }
Property Value
Type Description
ImageClassificationConfig

Parent

Required. Name of the dataset to request labeling task, format: projects/{project_id}/datasets/{dataset_id}

Declaration
public string Parent { get; set; }
Property Value
Type Description
System.String

ParentAsDatasetName

DatasetName-typed view over the Parent resource name property.

Declaration
public DatasetName ParentAsDatasetName { get; set; }
Property Value
Type Description
DatasetName

PolylineConfig

Configuration for polyline task. One of image_classification_config, bounding_poly_config, polyline_config and segmentation_config are required.

Declaration
public PolylineConfig PolylineConfig { get; set; }
Property Value
Type Description
PolylineConfig

RequestConfigCase

Declaration
public LabelImageRequest.RequestConfigOneofCase RequestConfigCase { get; }
Property Value
Type Description
LabelImageRequest.RequestConfigOneofCase

SegmentationConfig

Configuration for segmentation task. One of image_classification_config, bounding_poly_config, polyline_config and segmentation_config are required.

Declaration
public SegmentationConfig SegmentationConfig { get; set; }
Property Value
Type Description
SegmentationConfig
Back to top