Package com.incode.welcome_sdk.listeners
Interface FaceMatchListener
-
- All Implemented Interfaces:
-
com.incode.welcome_sdk.listeners.BaseListener
,com.incode.welcome_sdk.listeners.ErrorListener
,com.incode.welcome_sdk.listeners.UserCancelledListener
public interface FaceMatchListener implements BaseListener
Interface for getting face match result after call startFaceMatch
-
-
Method Summary
Modifier and Type Method Description abstract void
onFaceMatchCompleted(FaceMatchResult faceMatchResult)
Called when selfie scan step is completed -
Methods inherited from class com.incode.welcome_sdk.listeners.ErrorListener
onError
-
Methods inherited from class com.incode.welcome_sdk.listeners.UserCancelledListener
onUserCancelled
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
onFaceMatchCompleted
abstract void onFaceMatchCompleted(FaceMatchResult faceMatchResult)
Called when selfie scan step is completed
- Parameters:
faceMatchResult
- Result of the selfie scan step that includes face recognition confidence
-
-
-
-