洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
1.1 KiB

7 months ago
  1. //
  2. // APFViewController.h
  3. // APFaceDetectBiz
  4. //
  5. // Created by 晗羽 on 8/25/16.
  6. // Copyright © 2016 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <ToygerService/ToygerService.h>
  10. #import <BioAuthEngine/DTFFaceViewProtocol.h>
  11. NSString *const kAbnormalClose = @"abnormalclose";
  12. @class APBToygerBaseTask;
  13. @interface APBToygerViewController : UIViewController
  14. @property(nonatomic, strong) DTFLogMonitor *monitor;
  15. @property(nonatomic, strong) id<DTFFaceViewProtocol> faceView;
  16. @property(nonatomic, assign) BOOL isClose;
  17. @property(nonatomic, strong) NSString *platformInfo;
  18. @property(nonatomic, weak) APBToygerBaseTask *baseTask;
  19. - (void)startFaceRecognition:(AVCaptureVideoPreviewLayer *)layer;
  20. - (void)addWebGuideView:(UIView *)guideView;
  21. - (void)handleFaceStateChange:(ToygerMessage)state
  22. stateTips:(NSString *)tips
  23. actionGuide:(NSString *)guide
  24. progress:(CGFloat)progress;
  25. - (void)showLoadingView;
  26. - (void)dismissLoadingView;
  27. - (void)setPhotinusColor:(UIColor *)color;
  28. - (void)showBlur:(UIImage *)image;
  29. @end