/**
* Callback for successful liveness detection
*
* @param protobufData Return encrypted binary data
* @param images Returns the STSilentImage array according to the specified output scheme. Refer to STSilentImage.h for STSilentImage properties.
* @param faceRects Returns the STSilentRect array according to the specified output scheme. Refer to STSilentRect.h for STSilentRect properties.
*/
- (void)silentLivenessSuccessWithProtobufData:(NSData *)protobufData
images:(NSArray *)images
faceRects:(NSArray *)faceRects{
}
/**
* Callback for liveness detection failure
*
* @param livenessResult Running result STIDSilentLivenessResult
* @param protobufData Return encrypted binary data
* @param images Returns the STSilentImage array according to the specified output scheme. Refer to STSilentImage.h for STSilentImage properties.
* @param faceRects Returns the STSilentRect array according to the specified output scheme. Refer to STSilentRect.h for STSilentRect properties.
*/
- (void)silentLivenessFailureWithErrorCode:(STIDSilentLivenessResult)livenessResult
protobufData:(NSData *)protobufData
images:(NSArray *)images
faceRects:(NSArray *)faceRects{
}