Class: Aws::Rekognition::Types::StartShotDetectionFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::Rekognition::Types::StartShotDetectionFilter
- Defined in:
- gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb
Overview
Filters for the shot detection segments returned by
GetSegmentDetection
. For more information, see
StartSegmentDetectionFilters.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#min_segment_confidence ⇒ Float
Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment.
Instance Attribute Details
#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
, the
GetSegmentDetection
returns segments with confidence values
greater than or equal to 50 percent.
7280 7281 7282 7283 7284 |
# File 'gems/aws-sdk-rekognition/lib/aws-sdk-rekognition/types.rb', line 7280 class StartShotDetectionFilter < Struct.new( :min_segment_confidence) SENSITIVE = [] include Aws::Structure end |