Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextAnnotation

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

Annotations related to one detected OCR text snippet. This will contain the corresponding text, confidence value, and frame level information for each detection.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ GoogleCloudVideointelligenceV1TextAnnotation

Returns a new instance of GoogleCloudVideointelligenceV1TextAnnotation



793
794
795
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 793

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

Instance Attribute Details

#segmentsArray<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextSegment>

All video segments where OCR detected text appears. Corresponds to the JSON property segments



786
787
788
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 786

def segments
  @segments
end

#textString

The detected text. Corresponds to the JSON property text

Returns:

  • (String)


791
792
793
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 791

def text
  @text
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



798
799
800
801
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 798

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