Struct rusoto_rekognition::Landmark [] [src]

pub struct Landmark {
    pub type_: Option<String>,
    pub x: Option<f32>,
    pub y: Option<f32>,
}

Indicates the location of the landmark on the face.

Fields

Type of the landmark.

x-coordinate from the top left of the landmark expressed as the ratio of the width of the image. For example, if the images is 700x200 and the x-coordinate of the landmark is at 350 pixels, this value is 0.5.

y-coordinate from the top left of the landmark expressed as the ratio of the height of the image. For example, if the images is 700x200 and the y-coordinate of the landmark is at 100 pixels, this value is 0.5.

Trait Implementations

impl Default for Landmark
[src]

[src]

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

impl Debug for Landmark
[src]

[src]

Formats the value using the given formatter.

impl Clone for Landmark
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more