Show / Hide Table of Contents

Class LabelVideoRequest

Request message for LabelVideo.

Inheritance
System.Object
LabelVideoRequest
Implements
IMessage<LabelVideoRequest>
System.IEquatable<LabelVideoRequest>
IDeepCloneable<LabelVideoRequest>
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 LabelVideoRequest : IMessage<LabelVideoRequest>, IEquatable<LabelVideoRequest>, IDeepCloneable<LabelVideoRequest>, IBufferMessage, IMessage

Constructors

LabelVideoRequest()

Declaration
public LabelVideoRequest()

LabelVideoRequest(LabelVideoRequest)

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

Properties

BasicConfig

Required. Basic human annotation config.

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

EventConfig

Configuration for video event task. One of video_classification_config, object_detection_config, object_tracking_config and event_config is required.

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

Feature

Required. The type of video labeling task.

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

ObjectDetectionConfig

Configuration for video object detection task. One of video_classification_config, object_detection_config, object_tracking_config and event_config is required.

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

ObjectTrackingConfig

Configuration for video object tracking task. One of video_classification_config, object_detection_config, object_tracking_config and event_config is required.

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

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

RequestConfigCase

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

VideoClassificationConfig

Configuration for video classification task. One of video_classification_config, object_detection_config, object_tracking_config and event_config is required.

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