class Google::Apis::VideointelligenceV1p1beta1::GoogleCloudVideointelligenceV1p1beta1TextDetectionConfig

Config for TEXT_DETECTION.

Attributes

language_hints[RW]

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` @return [Array<String>]

model[RW]

Model to use for text detection. Supported values: “builtin/stable” (the default if unset) and “builtin/latest”. Corresponds to the JSON property `model` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/videointelligence_v1p1beta1/classes.rb, line 3436
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/videointelligence_v1p1beta1/classes.rb, line 3441
def update!(**args)
  @language_hints = args[:language_hints] if args.key?(:language_hints)
  @model = args[:model] if args.key?(:model)
end