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

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

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

origin: aws/aws-sdk-java

if (getEmotions() != null)
  sb.append("Emotions: ").append(getEmotions()).append(",");
if (getLandmarks() != null)
  sb.append("Landmarks: ").append(getLandmarks()).append(",");
if (getPose() != null)
  sb.append("Pose: ").append(getPose()).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-amplify/aws-sdk-android

/**
 * <p>
 * Indicates the location of landmarks on the face. Default attribute.
 * </p>
 * <p>
 * Returns a reference to this object so that method calls can be chained
 * together.
 *
 * @param landmarks <p>
 *            Indicates the location of landmarks on the face. Default
 *            attribute.
 *            </p>
 * @return A reference to this updated object so that method calls can be
 *         chained together.
 */
public FaceDetail withLandmarks(Landmark... landmarks) {
  if (getLandmarks() == null) {
    this.landmarks = new java.util.ArrayList<Landmark>(landmarks.length);
  }
  for (Landmark value : landmarks) {
    this.landmarks.add(value);
  }
  return this;
}
origin: aws/aws-sdk-java

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

if (getEmotions() != null)
  sb.append("Emotions: " + getEmotions() + ",");
if (getLandmarks() != null)
  sb.append("Landmarks: " + getLandmarks() + ",");
if (getPose() != null)
  sb.append("Pose: " + getPose() + ",");
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

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

if (faceDetail.getLandmarks() != null) {
  java.util.List<Landmark> landmarks = faceDetail.getLandmarks();
  jsonWriter.name("Landmarks");
  jsonWriter.beginArray();
com.amazonaws.services.rekognition.modelFaceDetailgetLandmarks

Javadoc

Indicates the location of landmarks on the face. 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.
  • getMouthOpen
    Indicates whether or not the mouth on the face is open, and the confidence level in the determinati
  • getMustache
    Indicates whether or not the face has a mustache, and the confidence level in the determination.
  • getMouthOpen,
  • getMustache,
  • getPose,
  • getQuality,
  • getSmile,
  • getSunglasses,
  • hashCode,
  • setAgeRange,
  • setBeard

Popular in Java

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • getSharedPreferences (Context)
  • getContentResolver (Context)
  • Container (java.awt)
    A generic Abstract Window Toolkit(AWT) container object is a component that can contain other AWT co
  • Rectangle (java.awt)
    A Rectangle specifies an area in a coordinate space that is enclosed by the Rectangle object's top-
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • Stream (java.util.stream)
    A sequence of elements supporting sequential and parallel aggregate operations. The following exampl
  • XPath (javax.xml.xpath)
    XPath provides access to the XPath evaluation environment and expressions. Evaluation of XPath Expr
  • Join (org.hibernate.mapping)
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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