123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- //
- // LivenessViewController.m
- // FaceSDKSample_IOS
- //
- // Created by 阿凡树 on 2017/5/23.
- // Copyright © 2017年 Baidu. All rights reserved.
- //
- #import "BDFaceLivenessViewController.h"
- #import "BDFaceSuccessViewController.h"
- #import "BDFaceLivingConfigModel.h"
- #import "BDFaceImageShow.h"
- #import <IDLFaceSDK/IDLFaceSDK.h>
- #import "BDFaceLog.h"
- @interface BDFaceLivenessViewController ()
- {
- UIImageView * newImage;
- BOOL isPaint;
- }
- @property (nonatomic, strong) NSArray *livenessArray;
- @property (nonatomic, assign) BOOL order;
- @property (nonatomic, assign) NSInteger numberOfLiveness;
- @property (nonatomic, assign) BOOL isAnimating;
- @end
- @implementation BDFaceLivenessViewController
- - (void)viewDidLoad {
- [super viewDidLoad];
- // 刻度线背颜色
- self.circleProgressView.lineBgColor = [UIColor colorWithRed:102 / 255.0 green:102 / 255.0 blue:102 / 255.0 alpha:1 / 1.0];
- // 刻度线进度颜色
- self.circleProgressView.scaleColor = [UIColor colorWithRed:0 / 255.0 green:186 / 255.0 blue:242 / 255.0 alpha:1 / 1.0];
- [self.view addSubview:self.circleProgressView];
-
- // 提示动画设置
- [self.view addSubview:self.remindAnimationView];
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- [self.remindAnimationView setActionImages];
- });
- }
- - (void)viewWillAppear:(BOOL)animated {
- [super viewWillAppear:animated];
- [[IDLFaceLivenessManager sharedInstance] startInitial];
- }
- - (void)viewDidDisappear:(BOOL)animated {
- [super viewDidDisappear:animated];
- [IDLFaceLivenessManager.sharedInstance reset];
- }
- - (void)onAppBecomeActive {
- [super onAppBecomeActive];
- [[IDLFaceLivenessManager sharedInstance] livenesswithList:_livenessArray order:_order numberOfLiveness:_numberOfLiveness];
- }
- - (void)onAppWillResignAction {
- [super onAppWillResignAction];
- [IDLFaceLivenessManager.sharedInstance reset];
- }
- - (void)didReceiveMemoryWarning {
- [super didReceiveMemoryWarning];
- // Dispose of any resources that can be recreated.
- }
- - (void)livenesswithList:(NSArray *)livenessArray order:(BOOL)order numberOfLiveness:(NSInteger)numberOfLiveness {
- _livenessArray = [NSArray arrayWithArray:livenessArray];
- _order = order;
- _numberOfLiveness = numberOfLiveness;
- [[IDLFaceLivenessManager sharedInstance] livenesswithList:livenessArray order:order numberOfLiveness:numberOfLiveness];
- }
- - (void)faceProcesss:(UIImage *)image {
- if (self.hasFinished) {
- return;
- }
-
- dispatch_async(dispatch_get_main_queue(), ^{
- self.isAnimating = [self.remindAnimationView isActionAnimating];
- });
- /*
- 显示提示动画的过程中还可以做动作
- */
- // if (self.isAnimating){
- // return;
- // }
-
- __weak typeof(self) weakSelf = self;
- [[IDLFaceLivenessManager sharedInstance] livenessNormalWithImage:image previewRect:self.previewRect detectRect:self.detectRect completionHandler:^(NSDictionary *images, FaceInfo *faceInfo, LivenessRemindCode remindCode) {
- // NSLog(@"remindCode = %lu", (unsigned long)remindCode);
- /*
- 此注释里的代码用于显示人脸框,调试过程中需要显示人脸款可打开注释
-
- // 绘制人脸框功能,开发者可以通过观察人脸框_faceRectFit 在 previewRect 包含关系判断是框内还是框外
- dispatch_async(dispatch_get_main_queue(), ^{
- CGRect faceRect = [BDFaceQualityUtil getFaceRect:faceInfo.landMarks withCount:faceInfo.landMarks.count];
- CGRect faceRectFit = [BDFaceUtil convertRectFrom:faceRect image:image previewRect:previewRect];
- if (!isPaint) {
- newImage= [[UIImageView alloc]init];
- [self.view addSubview:newImage];
- isPaint = !isPaint;
- }
- newImage = [self creatRectangle:newImage withRect:faceRectFit withcolor:[UIColor blackColor]];
- });
-
- */
-
- switch (remindCode) {
- case LivenessRemindCodeOK: {
- weakSelf.hasFinished = YES;
- [self warningStatus:CommonStatus warning:@"非常好"];
- if (images[@"image"] != nil && [(NSArray *)images[@"image"] count] != 0) {
-
- NSArray *imageArr = images[@"image"];
- for (FaceCropImageInfo * image in imageArr) {
- NSLog(@"cropImageWithBlack %f %f", image.cropImageWithBlack.size.height, image.cropImageWithBlack.size.width);
- NSLog(@"originalImage %f %f", image.originalImage.size.height, image.originalImage.size.width);
- }
-
- NSMutableArray *imagesAllKeysArr = [NSMutableArray arrayWithArray:images.allKeys];
- if ([imagesAllKeysArr containsObject:@"image"]) {
- [imagesAllKeysArr removeObject:@"image"];
- }
- NSString * key = @"";
- NSInteger num = imagesAllKeysArr.count;
- switch (num) {
- case 0:
- key = @"";
- break;
- case 1:
- key = [NSString stringWithFormat:@"%@",imagesAllKeysArr.firstObject];
- break;
-
- default:
- key = [NSString stringWithFormat:@"%@",imagesAllKeysArr[((imagesAllKeysArr.count - 1) >=0 )? (imagesAllKeysArr.count - 1) : 0]];
- break;
- }
-
-
- NSString * base64Str = images[key];
- // NSData * showData = [[NSData alloc]initWithBase64EncodedString:base64Str options:NSDataBase64DecodingIgnoreUnknownCharacters];
- // UIImage *myImage = [UIImage imageWithData:showData];
-
- [RQ_CHECKBODY_MANAGER setActionImageString:base64Str];
-
-
- FaceCropImageInfo * bestImage = imageArr[0];
- [[BDFaceImageShow sharedInstance] setSuccessImage:bestImage.originalImage];
- [[BDFaceImageShow sharedInstance] setSilentliveScore:bestImage.silentliveScore];
-
-
- dispatch_async(dispatch_get_main_queue(), ^{
- // UIViewController* fatherViewController = weakSelf.presentingViewController;
- // [weakSelf dismissViewControllerAnimated:YES completion:^{
- // BDFaceSuccessViewController *avc = [[BDFaceSuccessViewController alloc] init];
- // avc.modalPresentationStyle = UIModalPresentationFullScreen;
- // [fatherViewController presentViewController:avc animated:YES completion:nil];
- // [self closeAction];
- // }];
- [self closeActionWithIsSuccess:YES];
- });
- }
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.remindAnimationView stopActionAnimating];
- });
-
- [self singleActionSuccess:true];
- [BDFaceLog makeLogAfterFinishRecognizeAction:YES];
- break;
- }
- case LivenessRemindCodePitchOutofDownRange:
- [self warningStatus:PoseStatus warning:@"请略微抬头" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodePitchOutofUpRange:
- [self warningStatus:PoseStatus warning:@"请略微低头" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeYawOutofRightRange:
- [self warningStatus:PoseStatus warning:@"请略微向右转头" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeYawOutofLeftRange:
- [self warningStatus:PoseStatus warning:@"请略微向左转头" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodePoorIllumination:
- [self warningStatus:CommonStatus warning:@"请使环境光线再亮些" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeNoFaceDetected:
- [self warningStatus:CommonStatus warning:@"把脸移入框内" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeImageBlured:
- [self warningStatus:PoseStatus warning:@"请握稳手机" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionLeftEye:
- [self warningStatus:occlusionStatus warning:@"左眼有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionRightEye:
- [self warningStatus:occlusionStatus warning:@"右眼有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionNose:
- [self warningStatus:occlusionStatus warning:@"鼻子有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionMouth:
- [self warningStatus:occlusionStatus warning:@"嘴巴有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionLeftContour:
- [self warningStatus:occlusionStatus warning:@"左脸颊有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionRightContour:
- [self warningStatus:occlusionStatus warning:@"右脸颊有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeOcclusionChinCoutour:
- [self warningStatus:occlusionStatus warning:@"下颚有遮挡" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLeftEyeClosed:
- [self warningStatus:occlusionStatus warning:@"左眼未睁开" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeRightEyeClosed:
- [self warningStatus:occlusionStatus warning:@"右眼未睁开" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeTooClose:
- [self warningStatus:CommonStatus warning:@"请将脸部离远一点" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeTooFar:
- [self warningStatus:CommonStatus warning:@"请将脸部靠近一点" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeBeyondPreviewFrame:
- [self warningStatus:CommonStatus warning:@"把脸移入框内" conditionMeet:false];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLiveEye:
- [self warningStatus:CommonStatus warning:@"眨眨眼" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLiveMouth:
- [self warningStatus:CommonStatus warning:@"张张嘴" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLiveYawRight:
- [self warningStatus:CommonStatus warning:@"向右缓慢转头" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLiveYawLeft:
- [self warningStatus:CommonStatus warning:@"向左缓慢转头" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLivePitchUp:
- [self warningStatus:CommonStatus warning:@"缓慢抬头" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- case LivenessRemindCodeLivePitchDown:
- [self warningStatus:CommonStatus warning:@"缓慢低头" conditionMeet:true];
- [self singleActionSuccess:false];
- break;
- // case LivenessRemindCodeLiveYaw:
- // [self warningStatus:CommonStatus warning:@"左右摇头" conditionMeet:true];
- // [self singleActionSuccess:false];
- // break;
- case LivenessRemindCodeSingleLivenessFinished:
- {
- [[IDLFaceLivenessManager sharedInstance] livenessProcessHandler:^(float numberOfLiveness, float numberOfSuccess, LivenessActionType currenActionType) {
- NSLog(@"Finished 非常好 %d %d %d", (int)numberOfLiveness, (int)numberOfSuccess, (int)currenActionType);
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.circleProgressView setPercent:(CGFloat)(numberOfSuccess / numberOfLiveness)];
- });
- }];
- [self warningStatus:CommonStatus warning:@"非常好" conditionMeet:true];
- [self singleActionSuccess:true];
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.remindAnimationView stopActionAnimating];
- });
- }
- break;
- case LivenessRemindCodeFaceIdChanged:
- {
- [[IDLFaceLivenessManager sharedInstance] livenessProcessHandler:^(float numberOfLiveness, float numberOfSuccess, LivenessActionType currenActionType) {
- NSLog(@"face id changed %d %d %d", (int)numberOfLiveness, (int)numberOfSuccess, (int)currenActionType);
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.circleProgressView setPercent:0];
- });
- }];
- [self warningStatus:CommonStatus warning:@"把脸移入框内" conditionMeet:true];
- }
- break;
- case LivenessRemindCodeVerifyInitError: {
- if (self.faceCheckBodyCompletedBlock) {
- self.faceCheckBodyCompletedBlock(NO);
- }
- [self warningStatus:CommonStatus warning:@"验证失败"];
- }
- break;
- // case LivenessRemindCodeVerifyDecryptError:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyInfoFormatError:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyExpired:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyMissRequiredInfo:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyInfoCheckError:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyLocalFileError:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- // case LivenessRemindCodeVerifyRemoteDataError:
- // [self warningStatus:CommonStatus warning:@"验证失败"];
- // break;
- case LivenessRemindCodeTimeout: {
- // 时间超时,重置之前采集数据
- [[IDLFaceLivenessManager sharedInstance] reset];
- dispatch_async(dispatch_get_main_queue(), ^{
- // 时间超时,ui进度重置0
- [self.circleProgressView setPercent:0];
- [self isTimeOut:YES];
- });
- [BDFaceLog makeLogAfterFinishRecognizeAction:NO];
- break;
- }
- case LivenessRemindActionCodeTimeout:{
- [[IDLFaceLivenessManager sharedInstance] livenessProcessHandler:^(float numberOfLiveness, float numberOfSuccess, LivenessActionType currenActionType) {
- NSLog(@"动作超时 %d %d %d", (int)numberOfLiveness, (int)numberOfSuccess, (int)currenActionType);
- dispatch_async(dispatch_get_main_queue(), ^{
- [self.remindAnimationView startActionAnimating:(int)currenActionType];
- });
- }];
- [BDFaceLog makeLogAfterFinishRecognizeAction:NO];
- break;
- }
- case LivenessRemindCodeConditionMeet: {
-
- }
- break;
- default:
- break;
- }
- }];
- }
- - (void)selfReplayFunction{
- [[IDLFaceLivenessManager sharedInstance] reset];
- BDFaceLivingConfigModel* model = [BDFaceLivingConfigModel sharedInstance];
- [[IDLFaceLivenessManager sharedInstance] livenesswithList:model.liveActionArray order:model.isByOrder numberOfLiveness:model.numOfLiveness];
- }
- - (void)warningStatus:(WarningStatus)status warning:(NSString *)warning conditionMeet:(BOOL)meet{
- [self warningStatus:status warning:warning];
- }
- @end
-
|