Interface StartTechnicalCueDetectionFilter.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<StartTechnicalCueDetectionFilter.Builder,StartTechnicalCueDetectionFilter>,SdkBuilder<StartTechnicalCueDetectionFilter.Builder,StartTechnicalCueDetectionFilter>,SdkPojo
- Enclosing class:
- StartTechnicalCueDetectionFilter
public static interface StartTechnicalCueDetectionFilter.Builder extends SdkPojo, CopyableBuilder<StartTechnicalCueDetectionFilter.Builder,StartTechnicalCueDetectionFilter>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StartTechnicalCueDetectionFilter.BuilderblackFrame(Consumer<BlackFrame.Builder> 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.StartTechnicalCueDetectionFilter.BuilderblackFrame(BlackFrame 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.StartTechnicalCueDetectionFilter.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
StartTechnicalCueDetectionFilter.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,GetSegmentDetectionreturns 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,GetSegmentDetectionreturns 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.
-
blackFrame
StartTechnicalCueDetectionFilter.Builder blackFrame(BlackFrame 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.
- Parameters:
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.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
blackFrame
default StartTechnicalCueDetectionFilter.Builder blackFrame(Consumer<BlackFrame.Builder> 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.
This is a convenience method that creates an instance of theBlackFrame.Builderavoiding the need to create one manually viaBlackFrame.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toblackFrame(BlackFrame).- Parameters:
blackFrame- a consumer that will call methods onBlackFrame.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
blackFrame(BlackFrame)
-
-