Class: Google::Apis::DocumentaiV1beta3::GoogleCloudDocumentaiV1beta2DocumentPageImageQualityScoresDetectedDefect

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/documentai_v1beta3/classes.rb,
lib/google/apis/documentai_v1beta3/representations.rb,
lib/google/apis/documentai_v1beta3/representations.rb

Overview

Image Quality Defects

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDocumentaiV1beta2DocumentPageImageQualityScoresDetectedDefect

Returns a new instance of GoogleCloudDocumentaiV1beta2DocumentPageImageQualityScoresDetectedDefect.



4424
4425
4426
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 4424

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#confidenceFloat

Confidence of detected defect. Range [0, 1] where 1 indicates strong confidence of that the defect exists. Corresponds to the JSON property confidence

Returns:

  • (Float)


4414
4415
4416
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 4414

def confidence
  @confidence
end

#typeString

Name of the defect type. Supported values are "quality/defect_blurry", " quality/defect_noisy", "quality/defect_dark", "quality/defect_faint", "quality/ defect_text_too_small", "quality/defect_document_cutoff", "quality/ defect_text_cutoff", "quality/defect_glare" Corresponds to the JSON property type

Returns:

  • (String)


4422
4423
4424
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 4422

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4429
4430
4431
4432
# File 'lib/google/apis/documentai_v1beta3/classes.rb', line 4429

def update!(**args)
  @confidence = args[:confidence] if args.key?(:confidence)
  @type = args[:type] if args.key?(:type)
end