Class: Aws::Rekognition::Types::StartTechnicalCueDetectionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartTechnicalCueDetectionFilter
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Filters for the technical segments returned by GetSegmentDetection. For more information, see StartSegmentDetectionFilters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#black_frame ⇒ Types::BlackFrame
A filter that allows you to control the black frame detection by specifying the black levels and pixel coverage of black pixels in a frame.
-
#min_segment_confidence ⇒ Float
Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment.
Instance Attribute Details
#black_frame ⇒ Types::BlackFrame
A filter that allows you to control the black frame detection by specifying the black levels and pixel coverage of black pixels in a frame. Videos can come from multiple sources, formats, and time periods, with different standards and varying noise levels for black frames that need to be accounted for.
7430 7431 7432 7433 7434 7435 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7430 class StartTechnicalCueDetectionFilter < Struct.new( :min_segment_confidence, :black_frame) SENSITIVE = [] include Aws::Structure end |
#min_segment_confidence ⇒ Float
Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment. Confidence represents how certain Amazon Rekognition is that a segment is correctly identified. 0 is the lowest confidence. 100 is the highest confidence. Amazon Rekognition Video doesn't return any segments with a confidence level lower than this specified value.
If you don't specify MinSegmentConfidence
, GetSegmentDetection
returns segments with confidence values greater than or equal to 50
percent.
7430 7431 7432 7433 7434 7435 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7430 class StartTechnicalCueDetectionFilter < Struct.new( :min_segment_confidence, :black_frame) SENSITIVE = [] include Aws::Structure end |