/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). * You may not use this file except in compliance with the License. * A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed * on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either * express or implied. See the License for the specific language governing * permissions and limitations under the License. */ /* * Do not modify this file. This file is generated from the rekognition-2016-06-27.normal.json service model. */ using System; using System.Collections.Generic; using System.Xml.Serialization; using System.Text; using System.IO; using System.Net; using Amazon.Runtime; using Amazon.Runtime.Internal; namespace Amazon.Rekognition.Model { /// /// Structure containing attributes of the face that the algorithm detected. /// /// /// /// A FaceDetail object contains either the default facial attributes or /// all facial attributes. The default attributes are BoundingBox, Confidence, /// Landmarks, Pose, and Quality. /// /// /// /// GetFaceDetection is the only Amazon Rekognition Video stored video operation /// that can return a FaceDetail object with all attributes. To specify which /// attributes to return, use the FaceAttributes input parameter for StartFaceDetection. /// The following Amazon Rekognition Video operations return only the default attributes. /// The corresponding Start operations don't have a FaceAttributes input /// parameter: /// /// /// /// The Amazon Rekognition Image DetectFaces and IndexFaces operations can /// return all facial attributes. To specify which attributes to return, use the Attributes /// input parameter for DetectFaces. For IndexFaces, use the /// DetectAttributes input parameter. /// /// public partial class FaceDetail { private AgeRange _ageRange; private Beard _beard; private BoundingBox _boundingBox; private float? _confidence; private List _emotions = new List(); private EyeDirection _eyeDirection; private Eyeglasses _eyeglasses; private EyeOpen _eyesOpen; private FaceOccluded _faceOccluded; private Gender _gender; private List _landmarks = new List(); private MouthOpen _mouthOpen; private Mustache _mustache; private Pose _pose; private ImageQuality _quality; private Smile _smile; private Sunglasses _sunglasses; /// /// Gets and sets the property AgeRange. /// /// The estimated age range, in years, for the face. Low represents the lowest estimated /// age and High represents the highest estimated age. /// /// public AgeRange AgeRange { get { return this._ageRange; } set { this._ageRange = value; } } // Check to see if AgeRange property is set internal bool IsSetAgeRange() { return this._ageRange != null; } /// /// Gets and sets the property Beard. /// /// Indicates whether or not the face has a beard, and the confidence level in the determination. /// /// public Beard Beard { get { return this._beard; } set { this._beard = value; } } // Check to see if Beard property is set internal bool IsSetBeard() { return this._beard != null; } /// /// Gets and sets the property BoundingBox. /// /// Bounding box of the face. Default attribute. /// /// public BoundingBox BoundingBox { get { return this._boundingBox; } set { this._boundingBox = value; } } // Check to see if BoundingBox property is set internal bool IsSetBoundingBox() { return this._boundingBox != null; } /// /// Gets and sets the property Confidence. /// /// Confidence level that the bounding box contains a face (and not a different object /// such as a tree). Default attribute. /// /// [AWSProperty(Min=0, Max=100)] public float Confidence { get { return this._confidence.GetValueOrDefault(); } set { this._confidence = value; } } // Check to see if Confidence property is set internal bool IsSetConfidence() { return this._confidence.HasValue; } /// /// Gets and sets the property Emotions. /// /// The emotions that appear to be expressed on the face, and the confidence level in /// the determination. The API is only making a determination of the physical appearance /// of a person's face. It is not a determination of the person’s internal emotional state /// and should not be used in such a way. For example, a person pretending to have a sad /// face might not be sad emotionally. /// /// public List Emotions { get { return this._emotions; } set { this._emotions = value; } } // Check to see if Emotions property is set internal bool IsSetEmotions() { return this._emotions != null && this._emotions.Count > 0; } /// /// Gets and sets the property EyeDirection. /// /// Indicates the direction the eyes are gazing in, as defined by pitch and yaw. /// /// public EyeDirection EyeDirection { get { return this._eyeDirection; } set { this._eyeDirection = value; } } // Check to see if EyeDirection property is set internal bool IsSetEyeDirection() { return this._eyeDirection != null; } /// /// Gets and sets the property Eyeglasses. /// /// Indicates whether or not the face is wearing eye glasses, and the confidence level /// in the determination. /// /// public Eyeglasses Eyeglasses { get { return this._eyeglasses; } set { this._eyeglasses = value; } } // Check to see if Eyeglasses property is set internal bool IsSetEyeglasses() { return this._eyeglasses != null; } /// /// Gets and sets the property EyesOpen. /// /// Indicates whether or not the eyes on the face are open, and the confidence level in /// the determination. /// /// public EyeOpen EyesOpen { get { return this._eyesOpen; } set { this._eyesOpen = value; } } // Check to see if EyesOpen property is set internal bool IsSetEyesOpen() { return this._eyesOpen != null; } /// /// Gets and sets the property FaceOccluded. /// /// FaceOccluded should return "true" with a high confidence score if a /// detected face’s eyes, nose, and mouth are partially captured or if they are covered /// by masks, dark sunglasses, cell phones, hands, or other objects. FaceOccluded /// should return "false" with a high confidence score if common occurrences that do not /// impact face verification are detected, such as eye glasses, lightly tinted sunglasses, /// strands of hair, and others. /// /// public FaceOccluded FaceOccluded { get { return this._faceOccluded; } set { this._faceOccluded = value; } } // Check to see if FaceOccluded property is set internal bool IsSetFaceOccluded() { return this._faceOccluded != null; } /// /// Gets and sets the property Gender. /// /// The predicted gender of a detected face. /// /// public Gender Gender { get { return this._gender; } set { this._gender = value; } } // Check to see if Gender property is set internal bool IsSetGender() { return this._gender != null; } /// /// Gets and sets the property Landmarks. /// /// Indicates the location of landmarks on the face. Default attribute. /// /// public List Landmarks { get { return this._landmarks; } set { this._landmarks = value; } } // Check to see if Landmarks property is set internal bool IsSetLandmarks() { return this._landmarks != null && this._landmarks.Count > 0; } /// /// Gets and sets the property MouthOpen. /// /// Indicates whether or not the mouth on the face is open, and the confidence level in /// the determination. /// /// public MouthOpen MouthOpen { get { return this._mouthOpen; } set { this._mouthOpen = value; } } // Check to see if MouthOpen property is set internal bool IsSetMouthOpen() { return this._mouthOpen != null; } /// /// Gets and sets the property Mustache. /// /// Indicates whether or not the face has a mustache, and the confidence level in the /// determination. /// /// public Mustache Mustache { get { return this._mustache; } set { this._mustache = value; } } // Check to see if Mustache property is set internal bool IsSetMustache() { return this._mustache != null; } /// /// Gets and sets the property Pose. /// /// Indicates the pose of the face as determined by its pitch, roll, and yaw. Default /// attribute. /// /// public Pose Pose { get { return this._pose; } set { this._pose = value; } } // Check to see if Pose property is set internal bool IsSetPose() { return this._pose != null; } /// /// Gets and sets the property Quality. /// /// Identifies image brightness and sharpness. Default attribute. /// /// public ImageQuality Quality { get { return this._quality; } set { this._quality = value; } } // Check to see if Quality property is set internal bool IsSetQuality() { return this._quality != null; } /// /// Gets and sets the property Smile. /// /// Indicates whether or not the face is smiling, and the confidence level in the determination. /// /// public Smile Smile { get { return this._smile; } set { this._smile = value; } } // Check to see if Smile property is set internal bool IsSetSmile() { return this._smile != null; } /// /// Gets and sets the property Sunglasses. /// /// Indicates whether or not the face is wearing sunglasses, and the confidence level /// in the determination. /// /// public Sunglasses Sunglasses { get { return this._sunglasses; } set { this._sunglasses = value; } } // Check to see if Sunglasses property is set internal bool IsSetSunglasses() { return this._sunglasses != null; } } }