Class: Google::Apis::VisionV1::Feature
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::Feature
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/vision_v1/classes.rb,
lib/google/apis/vision_v1/representations.rb,
lib/google/apis/vision_v1/representations.rb
Overview
The type of Google Cloud Vision API detection to perform, and the maximum
number of results to return for that type. Multiple Feature
objects can be
specified in the features
list.
Instance Attribute Summary collapse
-
#max_results ⇒ Fixnum
Maximum number of results of this type.
-
#model ⇒ String
Model to use for the feature.
-
#type ⇒ String
The feature type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Feature
constructor
A new instance of Feature.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Feature
Returns a new instance of Feature.
1224 1225 1226 |
# File 'lib/google/apis/vision_v1/classes.rb', line 1224 def initialize(**args) update!(**args) end |
Instance Attribute Details
#max_results ⇒ Fixnum
Maximum number of results of this type. Does not apply to TEXT_DETECTION
,
DOCUMENT_TEXT_DETECTION
, or CROP_HINTS
.
Corresponds to the JSON property maxResults
1210 1211 1212 |
# File 'lib/google/apis/vision_v1/classes.rb', line 1210 def max_results @max_results end |
#model ⇒ String
Model to use for the feature. Supported values: "builtin/stable" (the default
if unset) and "builtin/latest". DOCUMENT_TEXT_DETECTION
and TEXT_DETECTION
also support "builtin/weekly" for the bleeding edge release updated weekly.
Corresponds to the JSON property model
1217 1218 1219 |
# File 'lib/google/apis/vision_v1/classes.rb', line 1217 def model @model end |
#type ⇒ String
The feature type.
Corresponds to the JSON property type
1222 1223 1224 |
# File 'lib/google/apis/vision_v1/classes.rb', line 1222 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1229 1230 1231 1232 1233 |
# File 'lib/google/apis/vision_v1/classes.rb', line 1229 def update!(**args) @max_results = args[:max_results] if args.key?(:max_results) @model = args[:model] if args.key?(:model) @type = args[:type] if args.key?(:type) end |