class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1BoundingBoxEvaluationOptions

Options regarding evaluation between bounding boxes.

Attributes

iou_threshold[RW]

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. Corresponds to the JSON property `iouThreshold` @return [Float]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 1215
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 1220
def update!(**args)
  @iou_threshold = args[:iou_threshold] if args.key?(:iou_threshold)
end