[][src]Struct rusoto_rekognition::DetectTextFilters

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

A set of optional parameters that you can use to set the criteria that the 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 image to look for text in.

Fields

regions_of_interest: Option<Vec<RegionOfInterest>>

A Filter focusing on a certain area of the image. Uses a BoundingBox object to set the region of the image.

word_filter: Option<DetectionFilter>

Trait Implementations

impl Clone for DetectTextFilters[src]

impl Debug for DetectTextFilters[src]

impl Default for DetectTextFilters[src]

impl PartialEq<DetectTextFilters> for DetectTextFilters[src]

impl Serialize for DetectTextFilters[src]

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