554325746@qq.com
2019-08-07 2539f53391765abb74b6fe63f46e5a2c701e950f
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
package com.basic.project.idcardservice.idcard;
 
import android.os.Environment;
 
public class AppConfig {
 
 
    // ???
    //    public static float threshold = 75.0f;
    public static float threshold = 0.6f;
    public static boolean isInitSuccess = false;
    public static boolean isLandscape = true;
    public static String SWITCH_CAMERA = "switch_camera";
    //??????????·??
    public static final String SOURCE_PATH = "/faceDiscern/faceSource";
    //???????????·??
    public static final String RECORD_PATH = "/faceDiscern/record";
    public static final String RECORD_PICTURE_PATH = "/faceDiscern/picture";
    //??????????·??
    public static final String MODEL_PATH = "/colorreco";
 
    public static int IMG_WIDTH = 512;
    public static int IMG_HEIGHT = 728;
 
    public static int MAX_DISCERN_NUM = 10;
 
 
    public static final String TAG = "FACE_DISCERN";
 
    public static final String ADD_ACTION = "com.sumeng.face.add_user_info";
 
    //me
    public static final int NETWORK_TYPE_WIFI = 1;
    public static final int NETWORK_TYPE_2G = 2;
    public static final int NETWORK_TYPE_3G = 3;
 
    /**
     * ??????????·?? ?????????洢????
     */
    public static final String BasePath = Environment.getExternalStorageDirectory().getAbsolutePath();
    /**
     * ??????????????
     */
    private static final String DBDirectoryName = "wltlib";
    /**
     * ???????????
     */
    public static final String DBDirectoryNameL = "clog";
 
    /**
     * ??????е?·??
     */
    public static final String RootFile = BasePath + "/" + DBDirectoryName + "/";
    /**
     * ??????е?·??
     */
    public static final String RootFileL = BasePath + "/" + DBDirectoryNameL + "/";
 
    public static final String WITLIB = RootFile + "base.dat";
 
    public static final String LIC = RootFile + "license.lic";
 
    public static String DIR_ROOT = "kdsm/Log";
    /**
     * ???????????
     */
    public static String FILE_NAME_EXTENSION_LOG = ".log";
 
    /**
     * UI?????????.
     */
    public static int uiWidth = 720;
 
    /**
     * UI?????????.
     */
    public static int uiHeight = 1080;
 
    /**
     * The Constant CONNECTEXCEPTION.
     */
    public static final String CONNECTEXCEPTION = "????????????";
 
    /**
     * The Constant UNKNOWNHOSTEXCEPTION.
     */
    public static final String UNKNOWNHOSTEXCEPTION = "????????????";
 
    /**
     * The Constant SOCKETEXCEPTION.
     */
    public static final String SOCKETEXCEPTION = "?????????????????";
 
    /**
     * The Constant SOCKETTIMEOUTEXCEPTION.
     */
    public static final String SOCKETTIMEOUTEXCEPTION = "??????????????";
 
    /**
     * The Constant NULLPOINTEREXCEPTION.
     */
    public static final String NULLPOINTEREXCEPTION = "????????????????";
 
    /**
     * The Constant NULLMESSAGEEXCEPTION.
     */
    public static final String NULLMESSAGEEXCEPTION = "??????????????";
 
    /**
     * The Constant CLIENTPROTOCOLEXCEPTION.
     */
    public static final String CLIENTPROTOCOLEXCEPTION = "Http???????????";
 
    /**
     * ????????????.
     */
    public static final String MISSINGPARAMETERS = "??????а????????";
 
    /**
     * The Constant REMOTESERVICEEXCEPTION.
     */
    public static final String REMOTESERVICEEXCEPTION = "????????????????";
 
}