Class MatchFacesDetection
- java.lang.Object
-
- com.regula.facesdk.model.results.matchfaces.MatchFacesDetection
-
public final class MatchFacesDetection extends java.lang.Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
MatchFacesDetection.Builder
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MatchFacesException
getException()
The error describes a failed face detectionjava.util.List<MatchFacesDetectionFace>
getFaces()
The array of faces detected on the image.MatchFacesImage
getImage()
The input image used for comparison operation.int
getImageIndex()
The index to the input image in the input array provided to the request.
-
-
-
Method Detail
-
getImage
public MatchFacesImage getImage()
The input image used for comparison operation.- Returns:
- MatchFacesImage object
- See Also:
MatchFacesImage
-
getImageIndex
public int getImageIndex()
The index to the input image in the input array provided to the request.- Returns:
- image position index
-
getFaces
public java.util.List<MatchFacesDetectionFace> getFaces()
The array of faces detected on the image.- Returns:
- List of
MatchFacesDetectionFace
-
getException
public MatchFacesException getException()
The error describes a failed face detection- Returns:
- #MatchFacesException object
-
-