Class: Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p2beta1::GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig
- 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 more...
Overview
Config for TEXT_DETECTION.
Instance Attribute Summary collapse
-
#language_hints ⇒ Array<String>
Language hint can be specified if the language to be detected is known a priori.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig
constructor
A new instance of GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig
Returns a new instance of GoogleCloudVideointelligenceV1p2beta1TextDetectionConfig
2324 2325 2326 |
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 2324 def initialize(**args) update!(**args) end |
Instance Attribute Details
#language_hints ⇒ Array<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
2322 2323 2324 |
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 2322 def language_hints @language_hints end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2329 2330 2331 |
# File 'generated/google/apis/videointelligence_v1p2beta1/classes.rb', line 2329 def update!(**args) @language_hints = args[:language_hints] if args.key?(:language_hints) end |