[][src]Struct rusoto_rekognition::UnindexedFace

pub struct UnindexedFace {
    pub face_detail: Option<FaceDetail>,
    pub reasons: Option<Vec<String>>,
}

A face that IndexFaces detected, but didn't index. Use the Reasons response attribute to determine why a face wasn't indexed.

Fields

face_detail: Option<FaceDetail>

The structure that contains attributes of a face that IndexFacesdetected, but didn't index.

reasons: Option<Vec<String>>

An array of reasons that specify why a face wasn't indexed.

  • EXTREMEPOSE - The face is at a pose that can't be detected. For example, the head is turned too far away from the camera.

  • EXCEEDSMAXFACES - The number of faces detected is already higher than that specified by the MaxFaces input parameter for IndexFaces.

  • LOWBRIGHTNESS - The image is too dark.

  • LOWSHARPNESS - The image is too blurry.

  • LOWCONFIDENCE - The face was detected with a low confidence.

  • SMALLBOUNDINGBOX - The bounding box around the face is too small.

Trait Implementations

impl Clone for UnindexedFace[src]

impl Debug for UnindexedFace[src]

impl Default for UnindexedFace[src]

impl<'de> Deserialize<'de> for UnindexedFace[src]

impl PartialEq<UnindexedFace> for UnindexedFace[src]

impl StructuralPartialEq for UnindexedFace[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.