Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb
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.
-
#model ⇒ String
Model to use for text detection.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig
constructor
A new instance of GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig
Returns a new instance of GoogleCloudVideointelligenceV1p3beta1TextDetectionConfig.
5924 5925 5926 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5924 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
5916 5917 5918 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5916 def language_hints @language_hints end |
#model ⇒ String
Model to use for text detection. Supported values: "builtin/stable" (the
default if unset) and "builtin/latest".
Corresponds to the JSON property model
5922 5923 5924 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5922 def model @model end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5929 5930 5931 5932 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 5929 def update!(**args) @language_hints = args[:language_hints] if args.key?(:language_hints) @model = args[:model] if args.key?(:model) end |