/* * Copyright 2010-2023 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. */ package com.amazonaws.services.rekognition.model; import java.io.Serializable; /** *

* A face that IndexFaces detected, but didn't index. Use the * Reasons response attribute to determine why a face wasn't * indexed. *

*/ public class UnindexedFace implements Serializable { /** *

* An array of reasons that specify why a face wasn't indexed. *

* */ private java.util.List reasons; /** *

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

*/ private FaceDetail faceDetail; /** *

* An array of reasons that specify why a face wasn't indexed. *

* * * @return

* An array of reasons that specify why a face wasn't indexed. *

* */ public java.util.List getReasons() { return reasons; } /** *

* An array of reasons that specify why a face wasn't indexed. *

* * * @param reasons

* An array of reasons that specify why a face wasn't indexed. *

* */ public void setReasons(java.util.Collection reasons) { if (reasons == null) { this.reasons = null; return; } this.reasons = new java.util.ArrayList(reasons); } /** *

* An array of reasons that specify why a face wasn't indexed. *

*
    *
  • *

    * EXTREME_POSE - The face is at a pose that can't be detected. For example, * the head is turned too far away from the camera. *

    *
  • *
  • *

    * EXCEEDS_MAX_FACES - The number of faces detected is already higher than * that specified by the MaxFaces input parameter for * IndexFaces. *

    *
  • *
  • *

    * LOW_BRIGHTNESS - The image is too dark. *

    *
  • *
  • *

    * LOW_SHARPNESS - The image is too blurry. *

    *
  • *
  • *

    * LOW_CONFIDENCE - The face was detected with a low confidence. *

    *
  • *
  • *

    * SMALL_BOUNDING_BOX - The bounding box around the face is too small. *

    *
  • *
*

* Returns a reference to this object so that method calls can be chained * together. * * @param reasons

* An array of reasons that specify why a face wasn't indexed. *

*
    *
  • *

    * EXTREME_POSE - The face is at a pose that can't be detected. * For example, the head is turned too far away from the camera. *

    *
  • *
  • *

    * EXCEEDS_MAX_FACES - The number of faces detected is already * higher than that specified by the MaxFaces input * parameter for IndexFaces. *

    *
  • *
  • *

    * LOW_BRIGHTNESS - The image is too dark. *

    *
  • *
  • *

    * LOW_SHARPNESS - The image is too blurry. *

    *
  • *
  • *

    * LOW_CONFIDENCE - The face was detected with a low confidence. *

    *
  • *
  • *

    * SMALL_BOUNDING_BOX - The bounding box around the face is too * small. *

    *
  • *
* @return A reference to this updated object so that method calls can be * chained together. */ public UnindexedFace withReasons(String... reasons) { if (getReasons() == null) { this.reasons = new java.util.ArrayList(reasons.length); } for (String value : reasons) { this.reasons.add(value); } return this; } /** *

* An array of reasons that specify why a face wasn't indexed. *

*
    *
  • *

    * EXTREME_POSE - The face is at a pose that can't be detected. For example, * the head is turned too far away from the camera. *

    *
  • *
  • *

    * EXCEEDS_MAX_FACES - The number of faces detected is already higher than * that specified by the MaxFaces input parameter for * IndexFaces. *

    *
  • *
  • *

    * LOW_BRIGHTNESS - The image is too dark. *

    *
  • *
  • *

    * LOW_SHARPNESS - The image is too blurry. *

    *
  • *
  • *

    * LOW_CONFIDENCE - The face was detected with a low confidence. *

    *
  • *
  • *

    * SMALL_BOUNDING_BOX - The bounding box around the face is too small. *

    *
  • *
*

* Returns a reference to this object so that method calls can be chained * together. * * @param reasons

* An array of reasons that specify why a face wasn't indexed. *

*
    *
  • *

    * EXTREME_POSE - The face is at a pose that can't be detected. * For example, the head is turned too far away from the camera. *

    *
  • *
  • *

    * EXCEEDS_MAX_FACES - The number of faces detected is already * higher than that specified by the MaxFaces input * parameter for IndexFaces. *

    *
  • *
  • *

    * LOW_BRIGHTNESS - The image is too dark. *

    *
  • *
  • *

    * LOW_SHARPNESS - The image is too blurry. *

    *
  • *
  • *

    * LOW_CONFIDENCE - The face was detected with a low confidence. *

    *
  • *
  • *

    * SMALL_BOUNDING_BOX - The bounding box around the face is too * small. *

    *
  • *
* @return A reference to this updated object so that method calls can be * chained together. */ public UnindexedFace withReasons(java.util.Collection reasons) { setReasons(reasons); return this; } /** *

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

* * @return

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

*/ public FaceDetail getFaceDetail() { return faceDetail; } /** *

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

* * @param faceDetail

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

*/ public void setFaceDetail(FaceDetail faceDetail) { this.faceDetail = faceDetail; } /** *

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param faceDetail

* The structure that contains attributes of a face that * IndexFacesdetected, but didn't index. *

* @return A reference to this updated object so that method calls can be * chained together. */ public UnindexedFace withFaceDetail(FaceDetail faceDetail) { this.faceDetail = faceDetail; return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getReasons() != null) sb.append("Reasons: " + getReasons() + ","); if (getFaceDetail() != null) sb.append("FaceDetail: " + getFaceDetail()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getReasons() == null) ? 0 : getReasons().hashCode()); hashCode = prime * hashCode + ((getFaceDetail() == null) ? 0 : getFaceDetail().hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof UnindexedFace == false) return false; UnindexedFace other = (UnindexedFace) obj; if (other.getReasons() == null ^ this.getReasons() == null) return false; if (other.getReasons() != null && other.getReasons().equals(this.getReasons()) == false) return false; if (other.getFaceDetail() == null ^ this.getFaceDetail() == null) return false; if (other.getFaceDetail() != null && other.getFaceDetail().equals(this.getFaceDetail()) == false) return false; return true; } }