Class: Google::Apis::VisionV1::SafeSearchAnnotation
- Inherits:
-
Object
- Object
- Google::Apis::VisionV1::SafeSearchAnnotation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/vision_v1/classes.rb,
generated/google/apis/vision_v1/representations.rb,
generated/google/apis/vision_v1/representations.rb
Overview
Set of features pertaining to the image, computed by computer vision methods over safe-search verticals (for example, adult, spoof, medical, violence).
Instance Attribute Summary collapse
-
#adult ⇒ String
Represents the adult content likelihood for the image.
-
#medical ⇒ String
Likelihood that this is a medical image.
-
#spoof ⇒ String
Spoof likelihood.
-
#violence ⇒ String
Violence likelihood.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SafeSearchAnnotation
constructor
A new instance of SafeSearchAnnotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SafeSearchAnnotation
Returns a new instance of SafeSearchAnnotation
243 244 245 |
# File 'generated/google/apis/vision_v1/classes.rb', line 243 def initialize(**args) update!(**args) end |
Instance Attribute Details
#adult ⇒ String
Represents the adult content likelihood for the image.
Corresponds to the JSON property adult
234 235 236 |
# File 'generated/google/apis/vision_v1/classes.rb', line 234 def adult @adult end |
#medical ⇒ String
Likelihood that this is a medical image.
Corresponds to the JSON property medical
224 225 226 |
# File 'generated/google/apis/vision_v1/classes.rb', line 224 def medical @medical end |
#spoof ⇒ String
Spoof likelihood. The likelihood that an modification
was made to the image's canonical version to make it appear
funny or offensive.
Corresponds to the JSON property spoof
241 242 243 |
# File 'generated/google/apis/vision_v1/classes.rb', line 241 def spoof @spoof end |
#violence ⇒ String
Violence likelihood.
Corresponds to the JSON property violence
229 230 231 |
# File 'generated/google/apis/vision_v1/classes.rb', line 229 def violence @violence end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
248 249 250 251 252 253 |
# File 'generated/google/apis/vision_v1/classes.rb', line 248 def update!(**args) @medical = args[:medical] if args.key?(:medical) @violence = args[:violence] if args.key?(:violence) @adult = args[:adult] if args.key?(:adult) @spoof = args[:spoof] if args.key?(:spoof) end |