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

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

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

origin: aws/aws-sdk-java

StringBuilder sb = new StringBuilder();
sb.append("{");
if (getBoundingBox() != null)
  sb.append("BoundingBox: ").append(getBoundingBox()).append(",");
if (getAgeRange() != null)
  sb.append("AgeRange: ").append(getAgeRange()).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

  return false;
FaceDetail other = (FaceDetail) obj;
if (other.getBoundingBox() == null ^ this.getBoundingBox() == null)
  return false;
if (other.getBoundingBox() != null && other.getBoundingBox().equals(this.getBoundingBox()) == false)
  return false;
if (other.getAgeRange() == null ^ this.getAgeRange() == null)
origin: aws-amplify/aws-sdk-android

StringBuilder sb = new StringBuilder();
sb.append("{");
if (getBoundingBox() != null)
  sb.append("BoundingBox: " + getBoundingBox() + ",");
if (getAgeRange() != null)
  sb.append("AgeRange: " + getAgeRange() + ",");
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

FaceDetail other = (FaceDetail) obj;
if (other.getBoundingBox() == null ^ this.getBoundingBox() == null)
  return false;
if (other.getBoundingBox() != null
    && other.getBoundingBox().equals(this.getBoundingBox()) == false)
  return false;
if (other.getAgeRange() == null ^ this.getAgeRange() == null)
origin: aws-amplify/aws-sdk-android

public void marshall(FaceDetail faceDetail, AwsJsonWriter jsonWriter) throws Exception {
  jsonWriter.beginObject();
  if (faceDetail.getBoundingBox() != null) {
    BoundingBox boundingBox = faceDetail.getBoundingBox();
    jsonWriter.name("BoundingBox");
    BoundingBoxJsonMarshaller.getInstance().marshall(boundingBox, jsonWriter);
com.amazonaws.services.rekognition.modelFaceDetailgetBoundingBox

Javadoc

Bounding box of 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.
  • 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
  • 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

  • Making http requests using okhttp
  • setScale (BigDecimal)
  • onRequestPermissionsResult (Fragment)
  • setRequestProperty (URLConnection)
  • URI (java.net)
    A Uniform Resource Identifier that identifies an abstract or physical resource, as specified by RFC
  • URLConnection (java.net)
    A connection to a URL for reading or writing. For HTTP connections, see HttpURLConnection for docume
  • Comparator (java.util)
    A Comparator is used to compare two objects to determine their ordering with respect to each other.
  • Timer (java.util)
    Timers schedule one-shot or recurring TimerTask for execution. Prefer java.util.concurrent.Scheduled
  • Annotation (javassist.bytecode.annotation)
    The annotation structure.An instance of this class is returned bygetAnnotations() in AnnotationsAttr
  • HttpServletRequest (javax.servlet.http)
    Extends the javax.servlet.ServletRequest interface to provide request information for HTTP servlets.
  • Top PhpStorm plugins
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