Skip to main content

LiveIDScannerHelper

public class LiveIDScannerHelper extends NSObject

The LiveIDScannerHelper class is a helper class to work with the Live ID feature.

Constructors

public init(bidScannerView: BIDScannerView, overlayFrame: CGRect? = nil, shouldResetOnWrongExpresssion: Bool = true, liveIdResponseDelegate: LiveIDResponseDelegate)

  • Creates an object of LiveIDScannerHelper. It has an additional parameter to indicate if the complete Live ID scanning feature must be reset if any expressions go wrong. The default value for shouldResetOnWrongExpression is true.
Parameter
bidLiveIDScannerViewBIDScannerView: A custom view to be provided by the application. This is generally used for UI customization.
overlayFrameCGRect: An overlay rect which is placed on top of the BIDScannerView object.
shouldResetOnWrongExpressionBool: A flag to indicate if the Live ID scanning feature must be reset if the wrong expression is detected.
liveIdResponseDelegateLiveIDResponseDelegate: The block to execute after the response is received.

public init(liveIdResponseDelegate: LiveIDResponseDelegate)

  • Creates an object of LiveIDScannerHelper. Used to choose enhanced liveid scanner.
Parameter
liveIdResponseDelegateLiveIDResponseDelegate: The block to execute after the Live id scan is completed.

Method Summary

Parameters
voidstartLiveIDScanning(dvcID: String? = nil)Starts the LiveI D scanning based on given dvcID (Document Verification Connector Identifier). If dvcID is given, the Live ID is checked for liveness check.
voidstopLiveIDScanningStops Live ID scanning.

Method Detail

startLiveIDScanning

startLiveIDScanning(dvcID: String? = nil)

  • Starts the LiveI D scanning based on the given dvcID (Document Verification Connector Identifier). If dvcID is given, the Live ID is checked for liveness check.

stopLiveIDScanning

public void stopLiveIDScanning()

  • Stops Live ID scanning.

Interface Summary

Parameters
LiveIDResponseDelegateCallback for the event when Live ID is captured, face expressions are changed, or face is out of focus.

Method Summary

Parameters
voidfaceLivenessCheckStarted()Called when scanner has started liveness check. This protocol method is Optional.
voidfocusOnFaceChanged(isFocused: Bool?)Called when if the user's face is in focus area for an expression to be performed. This protocol method is Optional.
voidliveIdDetectionCompleted(_ liveIdImage: UIImage?, signatureToken: String?, error: ErrorResponse?)Called when Live ID scanning is successful based on given expression checks. This protocol method is Required.
voidliveIdDidDetectErrorInScanning(error: ErrorResponse?)Called when an error is occurred during Live ID scanning. This protocol method is Optional.
voidreadyForExpression(_ livenessFactor : LivenessFactorType)Called when Live ID scanner is ready for a given expression. This protocol method is Optional.
voidwrongExpressionDetected(_ livenessFactor: LivenessFactorType)Called when Live ID scanner detects wrong expression. The method returns the expected expression to be performed. This protocol method is Optional.

faceLivenessCheckStarted

func faceLivenessCheckStarted()

  • Called when the scanner has started liveness check.

focusOnFaceChanged

func focusOnFaceChanged(isFocused: Bool?)

  • Called when the user's face is in the focus area for an expression to be performed.
Parameters
isFocusedbooleanA flag that indicates if the user's face is in the focus area.

liveIdDetectionCompleted

func liveIdDetectionCompleted(_ liveIdImage: UIImage?, signatureToken: String?, error: ErrorResponse?)

  • Called when Live ID scanning is successful based on given expression checks.
Parameters
liveIdImageUIImageAn image of person's face.
signatureTokenStringA token that carries information about Live ID. This is used to verify if the user's Live ID is modified or not before storing it on the BlockID blockchain platform.
errorErrorResponseAn object of ErrorResponse.

liveIdDidDetectErrorInScanning

func liveIdDidDetectErrorInScanning(error: ErrorResponse?)

  • Called when an error occurs during Live ID scanning.
Parameters
errorErrorResponseAn error object.

readyForExpression

func readyForExpression(_ livenessFactor : LivenessFactorType)

  • Called when the Live ID scanner is ready for a given expression.
Parameters
livenessFactorLivenessFactorTypeAn enum value for different expressions.

wrongExpressionDetected

func wrongExpressionDetected(_ livenessFactor: LivenessFactorType)

  • Called when the Live ID scanner detects the wrong expression. The method returns the expected expression to be performed.
Parameters
livenessFactorLivenessFactorTypeAn expected expression to be performed.