Struct rusoto_rekognition::DetectLabelsResponse[][src]

pub struct DetectLabelsResponse {
    pub labels: Option<Vec<Label>>,
    pub orientation_correction: Option<String>,
}

Fields

An array of labels for the real-world objects detected.

The orientation of the input image (counter-clockwise direction). If your application displays the image, you can use this value to correct the orientation. If Amazon Rekognition detects that the input image was rotated (for example, by 90 degrees), it first corrects the orientation before detecting the labels.

If the input image Exif metadata populates the orientation field, Amazon Rekognition does not perform orientation correction and the value of OrientationCorrection will be null.

Trait Implementations

impl Default for DetectLabelsResponse
[src]

Returns the "default value" for a type. Read more

impl Debug for DetectLabelsResponse
[src]

Formats the value using the given formatter. Read more

impl Clone for DetectLabelsResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DetectLabelsResponse
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations