[][src]Struct rusoto_rekognition::DetectionFilter

pub struct DetectionFilter {
    pub min_bounding_box_height: Option<f32>,
    pub min_bounding_box_width: Option<f32>,
    pub min_confidence: Option<f32>,
}

A set of parameters that allow you to filter out certain results from your returned results.

Fields

min_bounding_box_height: Option<f32>

Sets the minimum height of the word bounding box. Words with bounding box heights lesser than this value will be excluded from the result. Value is relative to the video frame height.

min_bounding_box_width: Option<f32>

Sets the minimum width of the word bounding box. Words with bounding boxes widths lesser than this value will be excluded from the result. Value is relative to the video frame width.

min_confidence: Option<f32>

Sets confidence of word detection. Words with detection confidence below this will be excluded from the result. Values should be between 0.5 and 1 as Text in Video will not return any result below 0.5.

Trait Implementations

impl Clone for DetectionFilter[src]

impl Debug for DetectionFilter[src]

impl Default for DetectionFilter[src]

impl PartialEq<DetectionFilter> for DetectionFilter[src]

impl Serialize for DetectionFilter[src]

impl StructuralPartialEq for DetectionFilter[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.