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.
|
|
//
// APFViewController.h
// APFaceDetectBiz
//
// Created by 晗羽 on 8/25/16.
// Copyright © 2016 DTF. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <ToygerService/ToygerService.h>
#import <BioAuthEngine/DTFFaceViewProtocol.h>
NSString *const kAbnormalClose = @"abnormalclose"; @class APBToygerBaseTask; @interface APBToygerViewController : UIViewController
@property(nonatomic, strong) DTFLogMonitor *monitor; @property(nonatomic, strong) id<DTFFaceViewProtocol> faceView; @property(nonatomic, assign) BOOL isClose; @property(nonatomic, strong) NSString *platformInfo; @property(nonatomic, weak) APBToygerBaseTask *baseTask;
- (void)startFaceRecognition:(AVCaptureVideoPreviewLayer *)layer; - (void)addWebGuideView:(UIView *)guideView; - (void)handleFaceStateChange:(ToygerMessage)state stateTips:(NSString *)tips actionGuide:(NSString *)guide progress:(CGFloat)progress; - (void)showLoadingView; - (void)dismissLoadingView; - (void)setPhotinusColor:(UIColor *)color; - (void)showBlur:(UIImage *)image;
@end
|