Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig

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

Overview

Config for TEXT_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig.



4580
4581
4582
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4580

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

Instance Attribute Details

#language_hintsArray<String>

Language hint can be specified if the language to be detected is known a priori. It can increase the accuracy of the detection. Language hint must be language code in BCP-47 format. Automatic language detection is performed if no hint is provided. Corresponds to the JSON property languageHints

Returns:

  • (Array<String>)


4572
4573
4574
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4572

def language_hints
  @language_hints
end

#modelString

Model to use for text detection. Supported values: "builtin/stable" (the default if unset) and "builtin/latest". Corresponds to the JSON property model

Returns:

  • (String)


4578
4579
4580
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4578

def model
  @model
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4585
4586
4587
4588
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 4585

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