[][src]Struct rusoto_rekognition::StartTextDetectionFilters

pub struct StartTextDetectionFilters {
    pub regions_of_interest: Option<Vec<RegionOfInterest>>,
    pub word_filter: Option<DetectionFilter>,
}

Set of optional parameters that let you set the criteria text must meet to be included in your response. WordFilter looks at a word's height, width and minimum confidence. RegionOfInterest lets you set a specific region of the screen to look for text in.

Fields

regions_of_interest: Option<Vec<RegionOfInterest>>

Filter focusing on a certain area of the frame. Uses a BoundingBox object to set the region of the screen.

word_filter: Option<DetectionFilter>

Filters focusing on qualities of the text, such as confidence or size.

Trait Implementations

impl Clone for StartTextDetectionFilters[src]

impl Debug for StartTextDetectionFilters[src]

impl Default for StartTextDetectionFilters[src]

impl PartialEq<StartTextDetectionFilters> for StartTextDetectionFilters[src]

impl Serialize for StartTextDetectionFilters[src]

impl StructuralPartialEq for StartTextDetectionFilters[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.