Tabnine Logo
FaceDetail.getPose
Code IndexAdd Tabnine to your IDE (free)

How to use
getPose
method
in
com.amazonaws.services.rekognition.model.FaceDetail

Best Java code snippets using com.amazonaws.services.rekognition.model.FaceDetail.getPose (Showing top 8 results out of 315)

origin: aws/aws-sdk-java

if (getLandmarks() != null)
  sb.append("Landmarks: ").append(getLandmarks()).append(",");
if (getPose() != null)
  sb.append("Pose: ").append(getPose()).append(",");
if (getQuality() != null)
  sb.append("Quality: ").append(getQuality()).append(",");
origin: aws/aws-sdk-java

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode + ((getBoundingBox() == null) ? 0 : getBoundingBox().hashCode());
  hashCode = prime * hashCode + ((getAgeRange() == null) ? 0 : getAgeRange().hashCode());
  hashCode = prime * hashCode + ((getSmile() == null) ? 0 : getSmile().hashCode());
  hashCode = prime * hashCode + ((getEyeglasses() == null) ? 0 : getEyeglasses().hashCode());
  hashCode = prime * hashCode + ((getSunglasses() == null) ? 0 : getSunglasses().hashCode());
  hashCode = prime * hashCode + ((getGender() == null) ? 0 : getGender().hashCode());
  hashCode = prime * hashCode + ((getBeard() == null) ? 0 : getBeard().hashCode());
  hashCode = prime * hashCode + ((getMustache() == null) ? 0 : getMustache().hashCode());
  hashCode = prime * hashCode + ((getEyesOpen() == null) ? 0 : getEyesOpen().hashCode());
  hashCode = prime * hashCode + ((getMouthOpen() == null) ? 0 : getMouthOpen().hashCode());
  hashCode = prime * hashCode + ((getEmotions() == null) ? 0 : getEmotions().hashCode());
  hashCode = prime * hashCode + ((getLandmarks() == null) ? 0 : getLandmarks().hashCode());
  hashCode = prime * hashCode + ((getPose() == null) ? 0 : getPose().hashCode());
  hashCode = prime * hashCode + ((getQuality() == null) ? 0 : getQuality().hashCode());
  hashCode = prime * hashCode + ((getConfidence() == null) ? 0 : getConfidence().hashCode());
  return hashCode;
}
origin: aws/aws-sdk-java

/**
 * Marshall the given parameter object.
 */
public void marshall(FaceDetail faceDetail, ProtocolMarshaller protocolMarshaller) {
  if (faceDetail == null) {
    throw new SdkClientException("Invalid argument passed to marshall(...)");
  }
  try {
    protocolMarshaller.marshall(faceDetail.getBoundingBox(), BOUNDINGBOX_BINDING);
    protocolMarshaller.marshall(faceDetail.getAgeRange(), AGERANGE_BINDING);
    protocolMarshaller.marshall(faceDetail.getSmile(), SMILE_BINDING);
    protocolMarshaller.marshall(faceDetail.getEyeglasses(), EYEGLASSES_BINDING);
    protocolMarshaller.marshall(faceDetail.getSunglasses(), SUNGLASSES_BINDING);
    protocolMarshaller.marshall(faceDetail.getGender(), GENDER_BINDING);
    protocolMarshaller.marshall(faceDetail.getBeard(), BEARD_BINDING);
    protocolMarshaller.marshall(faceDetail.getMustache(), MUSTACHE_BINDING);
    protocolMarshaller.marshall(faceDetail.getEyesOpen(), EYESOPEN_BINDING);
    protocolMarshaller.marshall(faceDetail.getMouthOpen(), MOUTHOPEN_BINDING);
    protocolMarshaller.marshall(faceDetail.getEmotions(), EMOTIONS_BINDING);
    protocolMarshaller.marshall(faceDetail.getLandmarks(), LANDMARKS_BINDING);
    protocolMarshaller.marshall(faceDetail.getPose(), POSE_BINDING);
    protocolMarshaller.marshall(faceDetail.getQuality(), QUALITY_BINDING);
    protocolMarshaller.marshall(faceDetail.getConfidence(), CONFIDENCE_BINDING);
  } catch (Exception e) {
    throw new SdkClientException("Unable to marshall request to JSON: " + e.getMessage(), e);
  }
}
origin: aws/aws-sdk-java

if (other.getLandmarks() != null && other.getLandmarks().equals(this.getLandmarks()) == false)
  return false;
if (other.getPose() == null ^ this.getPose() == null)
  return false;
if (other.getPose() != null && other.getPose().equals(this.getPose()) == false)
  return false;
if (other.getQuality() == null ^ this.getQuality() == null)
origin: aws-amplify/aws-sdk-android

if (getLandmarks() != null)
  sb.append("Landmarks: " + getLandmarks() + ",");
if (getPose() != null)
  sb.append("Pose: " + getPose() + ",");
if (getQuality() != null)
  sb.append("Quality: " + getQuality() + ",");
origin: aws-amplify/aws-sdk-android

@Override
public int hashCode() {
  final int prime = 31;
  int hashCode = 1;
  hashCode = prime * hashCode
      + ((getBoundingBox() == null) ? 0 : getBoundingBox().hashCode());
  hashCode = prime * hashCode + ((getAgeRange() == null) ? 0 : getAgeRange().hashCode());
  hashCode = prime * hashCode + ((getSmile() == null) ? 0 : getSmile().hashCode());
  hashCode = prime * hashCode + ((getEyeglasses() == null) ? 0 : getEyeglasses().hashCode());
  hashCode = prime * hashCode + ((getSunglasses() == null) ? 0 : getSunglasses().hashCode());
  hashCode = prime * hashCode + ((getGender() == null) ? 0 : getGender().hashCode());
  hashCode = prime * hashCode + ((getBeard() == null) ? 0 : getBeard().hashCode());
  hashCode = prime * hashCode + ((getMustache() == null) ? 0 : getMustache().hashCode());
  hashCode = prime * hashCode + ((getEyesOpen() == null) ? 0 : getEyesOpen().hashCode());
  hashCode = prime * hashCode + ((getMouthOpen() == null) ? 0 : getMouthOpen().hashCode());
  hashCode = prime * hashCode + ((getEmotions() == null) ? 0 : getEmotions().hashCode());
  hashCode = prime * hashCode + ((getLandmarks() == null) ? 0 : getLandmarks().hashCode());
  hashCode = prime * hashCode + ((getPose() == null) ? 0 : getPose().hashCode());
  hashCode = prime * hashCode + ((getQuality() == null) ? 0 : getQuality().hashCode());
  hashCode = prime * hashCode + ((getConfidence() == null) ? 0 : getConfidence().hashCode());
  return hashCode;
}
origin: aws-amplify/aws-sdk-android

    && other.getLandmarks().equals(this.getLandmarks()) == false)
  return false;
if (other.getPose() == null ^ this.getPose() == null)
  return false;
if (other.getPose() != null && other.getPose().equals(this.getPose()) == false)
  return false;
if (other.getQuality() == null ^ this.getQuality() == null)
origin: aws-amplify/aws-sdk-android

if (faceDetail.getPose() != null) {
  Pose pose = faceDetail.getPose();
  jsonWriter.name("Pose");
  PoseJsonMarshaller.getInstance().marshall(pose, jsonWriter);
com.amazonaws.services.rekognition.modelFaceDetailgetPose

Javadoc

Indicates the pose of the face as determined by its pitch, roll, and yaw. Default attribute.

Popular methods of FaceDetail

  • <init>
  • equals
  • getAgeRange
    The estimated age range, in years, for the face. Low represents the lowest estimated age and High r
  • getBeard
    Indicates whether or not the face has a beard, and the confidence level in the determination.
  • getBoundingBox
    Bounding box of the face. Default attribute.
  • getConfidence
    Confidence level that the bounding box contains a face (and not a different object such as a tree).
  • getEmotions
    The emotions detected on the face, and the confidence level in the determination. For example, HAPP
  • getEyeglasses
    Indicates whether or not the face is wearing eye glasses, and the confidence level in the determina
  • getEyesOpen
    Indicates whether or not the eyes on the face are open, and the confidence level in the determinati
  • getGender
    Gender of the face and the confidence level in the determination.
  • getLandmarks
    Indicates the location of landmarks on the face. Default attribute.
  • getMouthOpen
    Indicates whether or not the mouth on the face is open, and the confidence level in the determinati
  • getLandmarks,
  • getMouthOpen,
  • getMustache,
  • getQuality,
  • getSmile,
  • getSunglasses,
  • hashCode,
  • setAgeRange,
  • setBeard

Popular in Java

  • Making http post requests using okhttp
  • requestLocationUpdates (LocationManager)
  • getSystemService (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • FileWriter (java.io)
    A specialized Writer that writes to a file in the file system. All write requests made by calling me
  • OutputStream (java.io)
    A writable sink for bytes.Most clients will use output streams that write data to the file system (
  • String (java.lang)
  • NumberFormat (java.text)
    The abstract base class for all number formats. This class provides the interface for formatting and
  • HashSet (java.util)
    HashSet is an implementation of a Set. All optional operations (adding and removing) are supported.
  • JTextField (javax.swing)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now