Class DetectFaceResult
java.lang.Object
com.regula.facesdk.detection.response.DetectFaceResult
- 
Constructor SummaryConstructorsConstructorDescriptionDetectFaceResult(List<ImageQualityResult> quality, List<DetectFacesAttributeResult> attributes, List<Point> landMarks, String cropImage, Rect faceRect, Rect originalRect) 
- 
Method SummaryModifier and TypeMethodDescriptionThe array of the checked attributes.Base64 image of the aligned and cropped portrait.RectCoordinates of the rectangular area that contains the face relative to the overall image.List<Point>Absolute coordinates of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips.RectCoordinates of the rectangle with the face on the original image prepared for the face crop.The array for the face image quality assessmentsbooleanSummary of all image quality assessments.
- 
Constructor Details- 
DetectFaceResultpublic DetectFaceResult(List<ImageQualityResult> quality, List<DetectFacesAttributeResult> attributes, List<Point> landMarks, String cropImage, Rect faceRect, Rect originalRect) 
 
- 
- 
Method Details- 
getQualityThe array for the face image quality assessments- Returns:
- list of ImageQualityResult
 
- 
getAttributesThe array of the checked attributes.- Returns:
- list of DetectFacesAttributeResult
 
- 
getCropImageBase64 image of the aligned and cropped portrait. Returned ifDetectFacesConfiguration.getOutputImageParams()is set or predefined scenario is used.- Returns:
- String
 
- 
getFaceRectpublic Rect getFaceRect()Coordinates of the rectangular area that contains the face relative to the overall image.- Returns:
- android.graphics.Rect
 
- 
getOriginalRectpublic Rect getOriginalRect()Coordinates of the rectangle with the face on the original image prepared for the face crop. RequiresOutputImageCrop.isReturnOriginalRect()is set.- Returns:
- android.graphics.Rect
 
- 
getLandMarksAbsolute coordinates of five points of each detected face: left eye, right eye, nose, left point of lips, right point of lips.- Returns:
- List<android.graphics.Rect>
 
- 
isQualityCompliantpublic boolean isQualityCompliant()Summary of all image quality assessments. Returns true if all image quality assessments have success status. Returns false if any of image quality assessments have non-success status or none of quality assessments were requested.
 
-