Class: Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextSegment
- Inherits:
-
Object
- Object
- Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextSegment
- 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
Video segment level annotation results for text detection.
Instance Attribute Summary collapse
-
#confidence ⇒ Float
Confidence for the track of detected text.
-
#frames ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextFrame>
Information related to the frames where OCR detected text appears.
-
#segment ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment
Video segment.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1TextSegment
constructor
A new instance of GoogleCloudVideointelligenceV1TextSegment.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ GoogleCloudVideointelligenceV1TextSegment
Returns a new instance of GoogleCloudVideointelligenceV1TextSegment.
1043 1044 1045 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1043 def initialize(**args) update!(**args) end |
Instance Attribute Details
#confidence ⇒ Float
Confidence for the track of detected text. It is calculated as the highest
over all frames where OCR detected text appears.
Corresponds to the JSON property confidence
1031 1032 1033 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1031 def confidence @confidence end |
#frames ⇒ Array<Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1TextFrame>
Information related to the frames where OCR detected text appears.
Corresponds to the JSON property frames
1036 1037 1038 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1036 def frames @frames end |
#segment ⇒ Google::Apis::VideointelligenceV1::GoogleCloudVideointelligenceV1VideoSegment
Video segment.
Corresponds to the JSON property segment
1041 1042 1043 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1041 def segment @segment end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1048 1049 1050 1051 1052 |
# File 'generated/google/apis/videointelligence_v1/classes.rb', line 1048 def update!(**args) @confidence = args[:confidence] if args.key?(:confidence) @frames = args[:frames] if args.key?(:frames) @segment = args[:segment] if args.key?(:segment) end |