MGLiveDefaultDetectVC.h 688 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // MGLiveDefaultDetectVC.h
  3. // MGLivenessDetection
  4. //
  5. // Created by megvii on 16/8/17.
  6. // Copyright © 2016Year megvii. All rights reserved.
  7. //
  8. #import <MGLivenessDetection/MGLivenessDetection.h>
  9. #import "MGLiveDetectViewController.h"
  10. @interface MGLiveDefaultDetectVC : MGLiveDetectViewController
  11. #pragma mark - 活体结束回调,使用block
  12. /**
  13. * 活体全步骤结束,成功的回调
  14. */
  15. @property (nonatomic, copy) faceSuccess detectFinish;
  16. /**
  17. * 活体全步骤结束,失败的回调
  18. */
  19. @property (nonatomic, copy) faceError detectError;
  20. /**
  21. * 在只有照镜子模式下的成功回调
  22. */
  23. @property (nonatomic, copy) faceQualitySuccess Qualityfinish;
  24. @end