BDFaceBaseKitLivenessTipCustomConfigItem.h
3.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
//
// BDFaceBaseKitLivenessTipCustomConfigItem.h
// BDFaceBaseKit
//
// Created by 之哥 on 2021/8/10.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@interface BDFaceBaseKitLivenessTipCustomConfigItem : NSObject
@property (nonatomic, copy) NSString * faceLivenessZoomInText; //请将脸部靠近一点
@property (nonatomic, copy) NSString * faceLivenessZoomOutText; //请将脸部离远一点
@property (nonatomic, copy) NSString * faceLivenessHeadUpText; //请略微抬头
@property (nonatomic, copy) NSString * faceLivenessHeadDownText; //请略微低头
@property (nonatomic, copy) NSString * faceLivenessHeadLeftText; //请略微向左转头
@property (nonatomic, copy) NSString * faceLivenessHeadRightText; //请略微向右转头
@property (nonatomic, copy) NSString * faceLivenessLeftEyeOccludedText; //左眼有遮挡
@property (nonatomic, copy) NSString * faceLivenessRightEyeOccludedText; //右眼有遮挡
@property (nonatomic, copy) NSString * faceLivenessNoseOccludedText; //鼻子有遮挡
@property (nonatomic, copy) NSString * faceLivenessMouthOccludedText; //嘴部有遮挡
@property (nonatomic, copy) NSString * faceLivenessLeftCheekOccludedText; //左脸颊有遮挡
@property (nonatomic, copy) NSString * faceLivenessRightCheekOccludedText; //右脸颊有遮挡
@property (nonatomic, copy) NSString * faceLivenessChinOccludedText; //下巴有遮挡
@property (nonatomic, copy) NSString * faceLivenessIlliumPoorText; //请使环境光线再亮些
@property (nonatomic, copy) NSString * faceLivenessIlliumMuchText; //请使环境光线再暗些
@property (nonatomic, copy) NSString * faceLivenessblurredText; //请握稳手机,视线正对屏幕
@property (nonatomic, copy) NSString * faceLivenessLeftEyeNotOpenText; //左眼未睁开
@property (nonatomic, copy) NSString * faceLivenessRightEyeNotOpenText; //右眼未睁开
@property (nonatomic, copy) NSString * faceLivenessActionEyeText; //眨眨眼
@property (nonatomic, copy) NSString * faceLivenessActionMouthText; //张张嘴
@property (nonatomic, copy) NSString * faceLivenessActionHeadLeftText; //向左缓慢转头
@property (nonatomic, copy) NSString * faceLivenessActionHeadRightText; //向右缓慢转头
@property (nonatomic, copy) NSString * faceLivenessActionHeadUpText; //缓慢抬头
@property (nonatomic, copy) NSString * faceLivenessActionHeadDownText; //缓慢低头
@property (nonatomic, copy) NSString * faceLivenessActionUpDownText; //上下点头
@property (nonatomic, copy) NSString * faceLivenessActionYawText; //左右摇头
@property (nonatomic, copy) NSString * faceLivenessScreenWillFlash; //屏幕即将闪烁,请保持正脸
@property (nonatomic, copy) NSString * faceLivenessScreenColorChanging; //变光中,请保持正脸
@property (nonatomic, copy) NSString * faceLivenessCompletionText; //非常好
@property (nonatomic, copy) NSString * faceLivenessMovetoFrameText; //把脸移入框内
@property (nonatomic, copy) NSString * faceLivenessFacialFaceCorrectionText; //请调整人脸
@property (nonatomic, copy) NSString * faceLivenessVerifyFailedText; //验证失败
@property (nonatomic, copy) NSString * faceLivenessKeepFace; //请保持正脸
@property (nonatomic, copy) NSString * faceLivenessFaceCovered; //脸部有遮挡
@property (nonatomic, copy) NSString * faceLivenessFaceMoreThan; //检测多个人脸
/*
初始化方法
*/
-(instancetype)initWithLivenessTipConfig;
@end
NS_ASSUME_NONNULL_END