forked from gzzfw/backEnd/gz-dyh

wangwh
2024-08-28 b47d4a7accabce974e19d2a1ffb3c5c67507d74b
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
package cn.huge.base.common.utils;
 
import com.baidu.aip.ocr.AipOcr;
import com.google.common.collect.Maps;
import org.json.JSONObject;
 
import java.util.HashMap;
import java.util.Map;
 
/**
 * @title: 百度云OCR工具类
 * @description: 百度云OCR工具类
 * @company: hugeinfo
 * @author: liyj
 * @time: 2021-11-05 16:51:48
 * @version: 1.0.0
 */
public class BaiduOcrUtils {
    // 公司百度云账号
//    public static final String APP_ID = "24661114";
//    public static final String API_KEY = "cKXdjXhgRP9fsbI15UxGB0jM";
//    public static final String SECRET_KEY = "1X1BY7oAAmjemQgzzdfG3VnTh0rUTO2X";
    // 个人账号-15602261488
    public static final String APP_ID = "27535980";
    public static final String API_KEY = "6U6tSA75gKf4UMXvHgDpzOC9";
    public static final String SECRET_KEY = "BBjjCDhy2sAVO0jfiaGn8OWIGE470lWU";
 
    public static void main(String[] args) {
 
    }
 
    /**
     * 身份证识别(图片路径)
     * @param imagePath
     * @return
     */
    public static JSONObject idcardRecoImg(String imagePath) {
        AipOcr client = new AipOcr(APP_ID,API_KEY,SECRET_KEY);
        // 设置识别身份证正面参数 front - 身份证含照片的一面 back - 身份证带国徽的一面
        String idCardSide = "front";
 
        // 自定义参数定义
        HashMap<String, String> options = new HashMap<String, String>();
        options.put("detect_direction", "true");
        options.put("detect_risk", "true");
 
        JSONObject response = client.idcard(imagePath, idCardSide, options);
        return response;
 
    }
 
    /**
     * 身份证识别(二进制流)
     * @param images
     * @return
     */
    public static JSONObject idcardRecoByte(byte[] images) {
        AipOcr client = new AipOcr(APP_ID,API_KEY,SECRET_KEY);
        // 设置识别身份证正面参数 front - 身份证含照片的一面 back - 身份证带国徽的一面
        String idCardSide = "front";
 
        // 自定义参数定义
        HashMap<String, String> options = new HashMap<String, String>();
        options.put("detect_direction", "true");
        options.put("detect_risk", "true");
 
        JSONObject response = client.idcard(images, idCardSide, options);
        return response;
    }
 
    /**
     * 身份证识别(二进制流)
     * @param images
     * @return
     */
    public static Map<String, Object> ocrIdcard(byte[] images) {
        Map<String, Object> map = Maps.newHashMap();
        AipOcr client = new AipOcr(APP_ID,API_KEY,SECRET_KEY);
        // 设置识别身份证正面参数 front - 身份证含照片的一面 back - 身份证带国徽的一面
        String idCardSide = "front";
 
        // 自定义参数定义
        HashMap<String, String> options = new HashMap<String, String>();
        options.put("detect_direction", "true");
        options.put("detect_risk", "true");
 
        JSONObject json = client.idcard(images, idCardSide, options);
        JSONObject result = json.getJSONObject("words_result");
        String sex = result.getJSONObject("性别").getString("words");
        map.put("sex",sex);
//        if(sex.equals(CaseBaseConstsEnum.SEX_1.getDes())){
//            map.put("sexName",CaseBaseConstsEnum.SEX_1.getIndex());
//        }else{
//            map.put("sexName",CaseBaseConstsEnum.SEX_2.getIndex());
//        }
        String name = result.getJSONObject("姓名").getString("words");
        map.put("trueName",name);
        String address = result.getJSONObject("住址").getString("words");
        map.put("sendAddress",address);
        String idcard = result.getJSONObject("公民身份号码").getString("words");
        map.put("certificateType", "09_00015-1");
        map.put("certificateTypeName", "身份证");
        map.put("certificateNumber",idcard);
        String bir = result.getJSONObject("出生").getString("words");
        String birthday = "";
        birthday += bir.substring(0,4)+"-"+bir.substring(4,6)+"-"+bir.substring(6,8);
        map.put("birthday",birthday);
        String nation = result.getJSONObject("民族").getString("words")+"族";
        map.put("nation",nation);
        return map;
    }
 
    /**
     * 身份证识别(二进制流)
     *
     * @param images
     * @return
     */
    public static Map<String, Object> ocrIdcard2(byte[] images) {
        Map<String, Object> map = Maps.newHashMap();
        AipOcr client = new AipOcr(APP_ID, API_KEY, SECRET_KEY);
        // 设置识别身份证正面参数 front - 身份证含照片的一面 back - 身份证带国徽的一面
        String idCardSide = "front";
 
        // 自定义参数定义
        HashMap<String, String> options = new HashMap<String, String>();
        options.put("detect_direction", "true");
        options.put("detect_risk", "true");
 
        JSONObject json = client.idcard(images, idCardSide, options);
        JSONObject result = json.getJSONObject("words_result");
        String sex = result.getJSONObject("性别").getString("words");
        map.put("sex", sex+"性");
        String name = result.getJSONObject("姓名").getString("words");
        map.put("name", name);
        String address = result.getJSONObject("住址").getString("words");
        map.put("address", address);
        String idcard = result.getJSONObject("公民身份号码").getString("words");
        map.put("idcard", idcard);
        String bir = result.getJSONObject("出生").getString("words");
        String birthday = "";
        birthday += bir.substring(0, 4) + "-" + bir.substring(4, 6) + "-" + bir.substring(6, 8);
        map.put("birthday", birthday);
        String nation = result.getJSONObject("民族").getString("words") + "族";
        map.put("nation", nation);
        return map;
    }
}
/**
 * -------------------_ooOoo_-------------------
 * ------------------o8888888o------------------
 * ------------------88" . "88------------------
 * ------------------(| -_- |)------------------
 * ------------------O\  =  /O------------------
 * ---------------____/`---'\____---------------
 * -------------.'  \\|     |//  `.-------------
 * ------------/  \\|||  :  |||//  \------------
 * -----------/  _||||| -:- |||||-  \-----------
 * -----------|   | \\\  -  /// |   |-----------
 * -----------| \_|  ''\---/''  |   |-----------
 * -----------\  .-\__  `-`  ___/-. /-----------
 * ---------___`. .'  /--.--\  `. . __----------
 * ------."" '<  `.___\_<|>_/___.'  >'"".-------
 * -----| | :  `- \`.;`\ _ /`;.`/ - ` : | |-----
 * -----\  \ `-.   \_ __\ /__ _/   .-` /  /-----
 * ======`-.____`-.___\_____/___.-`____.-'======
 * -------------------`=---='
 * ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 * ---------佛祖保佑---hugeinfo---永无BUG----------
 */