Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig

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

Overview

Config for TEXT_DETECTION.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig

Returns a new instance of GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig



4139
4140
4141
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 4139

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>)


4137
4138
4139
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 4137

def language_hints
  @language_hints
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4144
4145
4146
# File 'generated/google/apis/videointelligence_v1p3beta1/classes.rb', line 4144

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