LCBestShotBuilder
Objective-C
@interface LCBestShotBuilder : NSObject
Swift
class LCBestShotBuilder : NSObject
Detector builder of the best shot.
-
Creates an instance of the best shot detector.
Declaration
Objective-C
+ (nonnull id<LCBestShotDetectorProtocol>) buildWithDelegate:(nonnull id<LCBestShotDelegate>)delegate livenessAPI:(nullable id<LCOnlineLivenessProtocol>)onlineLiveness configuration:(nonnull LCLunaConfiguration *)configuration;
Swift
class func build(with delegate: LCBestShotDelegate, livenessAPI onlineLiveness: LCOnlineLivenessProtocol?, configuration: LCLunaConfiguration) -> LCBestShotDetectorProtocol
Parameters
delegate
Delegate of the best shot detector.
onlineLiveness
Object which checks liveness..
configuration
Luna ID SDK configuration.
-
Undocumented
Declaration
Objective-C
+ (void) prepareWithConfiguration:(LCLunaConfiguration *)configuration livenessAPI:(nullable id <LCOnlineLivenessProtocol>)onlineLiveness ;
Swift
class func prepare(with configuration: LCLunaConfiguration, livenessAPI onlineLiveness: LCOnlineLivenessProtocol?)