Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/videointelligence_v1/classes.rb,
generated/google/apis/videointelligence_v1/representations.rb,
generated/google/apis/videointelligence_v1/representations.rb

Overview

Explicit content annotation (based on per-frame visual signals only). If no explicit content has been detected in a frame, no annotations are present for that frame.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1p3beta1ExplicitContentAnnotation.



5316
5317
5318
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 5316

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#framesArray<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1p3beta1ExplicitContentFrame>

All video frames where explicit content was detected. Corresponds to the JSON property frames



5309
5310
5311
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 5309

def frames
  @frames
end

#versionString

Feature version. Corresponds to the JSON property version

Returns:

  • (String)


5314
5315
5316
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 5314

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5321
5322
5323
5324
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 5321

def update!(**args)
  @frames = args[:frames] if args.key?(:frames)
  @version = args[:version] if args.key?(:version)
end