Show / Hide Table of Contents

Class ObjectDetectionConfig

Config for video object detection human labeling task. Object detection will be conducted on the images extracted from the video, and those objects will be labeled with bounding boxes. User need to specify the number of images to be extracted per second as the extraction frame rate.

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

Constructors

ObjectDetectionConfig()

Declaration
public ObjectDetectionConfig()

ObjectDetectionConfig(ObjectDetectionConfig)

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

Properties

AnnotationSpecSet

Required. Annotation spec set resource name.

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

ExtractionFrameRate

Required. Number of frames per second to be extracted from the video.

Declaration
public double ExtractionFrameRate { get; set; }
Property Value
Type Description
System.Double
Back to top