Interface StartShotDetectionFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StartShotDetectionFilter.Builder,StartShotDetectionFilter>,SdkBuilder<StartShotDetectionFilter.Builder,StartShotDetectionFilter>,SdkPojo
- Enclosing class:
- StartShotDetectionFilter
public static interface StartShotDetectionFilter.Builder extends SdkPojo, CopyableBuilder<StartShotDetectionFilter.Builder,StartShotDetectionFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartShotDetectionFilter.BuilderminSegmentConfidence(Float minSegmentConfidence)Specifies the minimum confidence that Amazon Rekognition Video must have in order to return a detected segment.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
minSegmentConfidence
StartShotDetectionFilter.Builder minSegmentConfidence(Float minSegmentConfidence)
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, theGetSegmentDetectionreturns segments with confidence values greater than or equal to 50 percent.- Parameters:
minSegmentConfidence- 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, theGetSegmentDetectionreturns segments with confidence values greater than or equal to 50 percent.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-