#[non_exhaustive]pub struct StartShotDetectionFilter { /* private fields */ }Expand description
Filters for the shot detection segments returned by GetSegmentDetection. For more information, see StartSegmentDetectionFilters.
Implementations
sourceimpl StartShotDetectionFilter
impl StartShotDetectionFilter
sourcepub fn min_segment_confidence(&self) -> Option<f32>
pub fn min_segment_confidence(&self) -> Option<f32>
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.
sourceimpl StartShotDetectionFilter
impl StartShotDetectionFilter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture StartShotDetectionFilter.
Trait Implementations
sourceimpl Clone for StartShotDetectionFilter
impl Clone for StartShotDetectionFilter
sourcefn clone(&self) -> StartShotDetectionFilter
fn clone(&self) -> StartShotDetectionFilter
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for StartShotDetectionFilter
impl Debug for StartShotDetectionFilter
sourceimpl PartialEq<StartShotDetectionFilter> for StartShotDetectionFilter
impl PartialEq<StartShotDetectionFilter> for StartShotDetectionFilter
sourcefn eq(&self, other: &StartShotDetectionFilter) -> bool
fn eq(&self, other: &StartShotDetectionFilter) -> bool
impl StructuralPartialEq for StartShotDetectionFilter
Auto Trait Implementations
impl RefUnwindSafe for StartShotDetectionFilter
impl Send for StartShotDetectionFilter
impl Sync for StartShotDetectionFilter
impl Unpin for StartShotDetectionFilter
impl UnwindSafe for StartShotDetectionFilter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more