Class: Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TextAnnotation
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TextAnnotation
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/videointelligence_v1p3beta1/classes.rb,
lib/google/apis/videointelligence_v1p3beta1/representations.rb,
lib/google/apis/videointelligence_v1p3beta1/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
-
#segments ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TextSegment>
All video segments where OCR detected text appears.
-
#text ⇒ String
The detected text.
-
#version ⇒ String
Feature version.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2TextAnnotation
constructor
A new instance of GoogleCloudVideointelligenceV1beta2TextAnnotation.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1beta2TextAnnotation
Returns a new instance of GoogleCloudVideointelligenceV1beta2TextAnnotation.
1887 1888 1889 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1887 def initialize(**args) update!(**args) end |
Instance Attribute Details
#segments ⇒ Array<Google::Apis::VideointelligenceV1p3beta1::GoogleCloudVideointelligenceV1beta2TextSegment>
All video segments where OCR detected text appears.
Corresponds to the JSON property segments
1875 1876 1877 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1875 def segments @segments end |
#text ⇒ String
The detected text.
Corresponds to the JSON property text
1880 1881 1882 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1880 def text @text end |
#version ⇒ String
Feature version.
Corresponds to the JSON property version
1885 1886 1887 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1885 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1892 1893 1894 1895 1896 |
# File 'lib/google/apis/videointelligence_v1p3beta1/classes.rb', line 1892 def update!(**args) @segments = args[:segments] if args.key?(:segments) @text = args[:text] if args.key?(:text) @version = args[:version] if args.key?(:version) end |