Show / Hide Table of Contents

Class BoundingBoxEvaluationOptions

Options regarding evaluation between bounding boxes.

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

Constructors

BoundingBoxEvaluationOptions()

Declaration
public BoundingBoxEvaluationOptions()

BoundingBoxEvaluationOptions(BoundingBoxEvaluationOptions)

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

Properties

IouThreshold

Minimum [intersection-over-union

(IOU)](/vision/automl/object-detection/docs/evaluate#intersection-over-union) required for 2 bounding boxes to be considered a match. This must be a number between 0 and 1.

Declaration
public float IouThreshold { get; set; }
Property Value
Type Description
System.Single
Back to top