forked from royalrick/weapp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ocr.go
460 lines (376 loc) · 13.6 KB
/
ocr.go
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
package weapp
import "github.com/ericnts/weapp/v3/request"
const (
apiBankcard = "/cv/ocr/bankcard"
apiVehicleLicense = "/cv/ocr/driving"
apiDrivingLicense = "/cv/ocr/drivinglicense"
apiIDCard = "/cv/ocr/idcard"
apiBusinessLicense = "/cv/ocr/bizlicense"
apiPrintedText = "/cv/ocr/comm"
)
// RecognizeMode 图片识别模式
type RecognizeMode = string
// 所有图片识别模式
const (
RecognizeModePhoto RecognizeMode = "photo" // 拍照模式
RecognizeModeScan RecognizeMode = "scan" // 扫描模式
)
// BankCardResponse 识别银行卡返回数据
type BankCardResponse struct {
request.CommonError
Number string `json:"number"` // 银行卡号
}
// BankCardByURL 通过URL识别银行卡
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// url 要检测的图片 url,传这个则不用传 img 参数。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) BankCardByURL(cardURL string, mode RecognizeMode) (*BankCardResponse, error) {
api := baseURL + apiBankcard
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.bankCardByURL(api, token, cardURL, mode)
}
func (cli *Client) bankCardByURL(api, token, cardURL string, mode RecognizeMode) (*BankCardResponse, error) {
res := new(BankCardResponse)
err := cli.ocrByURL(api, token, cardURL, mode, res)
if err != nil {
return nil, err
}
return res, nil
}
// BankCard 通过文件识别银行卡
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// img form-data 中媒体文件标识,有filename、filelength、content-type等信息,传这个则不用传递 img_url。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) BankCard(filename string, mode RecognizeMode) (*BankCardResponse, error) {
api := baseURL + apiBankcard
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.bankCard(api, token, filename, mode)
}
func (cli *Client) bankCard(api, token, filename string, mode RecognizeMode) (*BankCardResponse, error) {
res := new(BankCardResponse)
err := cli.ocrByFile(api, token, filename, mode, res)
if err != nil {
return nil, err
}
return res, err
}
// CardType 卡片方向
type CardType = string
// 所有卡片方向
const (
CardTypeFront = "Front" // 正面
CardTypeBack = "Back" // 背面
)
// CardResponse 识别卡片返回数据
type CardResponse struct {
request.CommonError
Type CardType `json:"type"` // 正面或背面,Front / Back
ValidDate string `json:"valid_date"` // 有效期
}
// DrivingLicenseResponse 识别行驶证返回数据
type DrivingLicenseResponse struct {
request.CommonError
IDNum string `json:"id_num"` // 证号
Name string `json:"name"` // 姓名
Nationality string `json:"nationality"` // 国家
Sex string `json:"sex"` // 性别
Address string `json:"address"` // 地址
BirthDate string `json:"birth_date"` // 出生日期
IssueDate string `json:"issue_date"` // 初次领证日期
CarClass string `json:"car_class"` // 准驾车型
ValidFrom string `json:"valid_from"` // 有效期限起始日
ValidTo string `json:"valid_to"` // 有效期限终止日
OfficialSeal string `json:"official_seal"` // 印章文构
}
// DriverLicenseByURL 通过URL识别行驶证
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// url 要检测的图片 url,传这个则不用传 img 参数。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) DriverLicenseByURL(licenseURL string) (*DrivingLicenseResponse, error) {
api := baseURL + apiDrivingLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.driverLicenseByURL(api, token, licenseURL)
}
func (cli *Client) driverLicenseByURL(api, token, licenseURL string) (*DrivingLicenseResponse, error) {
res := new(DrivingLicenseResponse)
err := cli.ocrByURL(api, token, licenseURL, "", res)
if err != nil {
return nil, err
}
return res, nil
}
// DriverLicense 通过文件识别行驶证
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// img form-data 中媒体文件标识,有filename、filelength、content-type等信息,传这个则不用传递 img_url。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) DriverLicense(filename string) (*DrivingLicenseResponse, error) {
api := baseURL + apiDrivingLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.driverLicense(api, token, filename)
}
func (cli *Client) driverLicense(api, token, filename string) (*DrivingLicenseResponse, error) {
res := new(DrivingLicenseResponse)
err := cli.ocrByFile(api, token, filename, "", res)
if err != nil {
return nil, err
}
return res, err
}
// IDCardResponse 识别身份证返回数据
type IDCardResponse = CardResponse
// IDCardByURL 通过URL识别身份证
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// url 要检测的图片 url,传这个则不用传 img 参数。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) IDCardByURL(cardURL string, mode RecognizeMode) (*IDCardResponse, error) {
api := baseURL + apiIDCard
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.idCardByURL(api, token, cardURL, mode)
}
func (cli *Client) idCardByURL(api, token, cardURL string, mode RecognizeMode) (*IDCardResponse, error) {
res := new(IDCardResponse)
err := cli.ocrByURL(api, token, cardURL, mode, res)
if err != nil {
return nil, err
}
return res, nil
}
// IDCard 通过文件识别身份证
// 接口限制: 此接口需要提供对应小程序/公众号 appid,开通权限后方可调用。
//
// token 接口调用凭证
// img form-data 中媒体文件标识,有filename、filelength、content-type等信息,传这个则不用传递 img_url。
// mode 图片识别模式,photo(拍照模式)或 scan(扫描模式)
func (cli *Client) IDCard(filename string, mode RecognizeMode) (*IDCardResponse, error) {
api := baseURL + apiIDCard
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.idCard(api, token, filename, mode)
}
func (cli *Client) idCard(api, token, filename string, mode RecognizeMode) (*IDCardResponse, error) {
res := new(IDCardResponse)
err := cli.ocrByFile(api, token, filename, mode, res)
if err != nil {
return nil, err
}
return res, err
}
// VehicleLicenseResponse 识别卡片返回数据
type VehicleLicenseResponse struct {
request.CommonError
VehicleType string `json:"vehicle_type"`
Owner string `json:"owner"`
Addr string `json:"addr"`
UseCharacter string `json:"use_character"`
Model string `json:"model"`
Vin string `json:"vin"`
EngineNum string `json:"engine_num"`
RegisterDate string `json:"register_date"`
IssueDate string `json:"issue_date"`
PlateNumB string `json:"plate_num_b"`
Record string `json:"record"`
PassengersNum string `json:"passengers_num"`
TotalQuality string `json:"total_quality"`
TotalprepareQualityQuality string `json:"totalprepare_quality_quality"`
}
// VehicleLicenseByURL 行驶证 OCR 识别
func (cli *Client) VehicleLicenseByURL(cardURL string, mode RecognizeMode) (*VehicleLicenseResponse, error) {
api := baseURL + apiVehicleLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.vehicleLicenseByURL(api, token, cardURL, mode)
}
func (cli *Client) vehicleLicenseByURL(api, token, cardURL string, mode RecognizeMode) (*VehicleLicenseResponse, error) {
res := new(VehicleLicenseResponse)
err := cli.ocrByURL(api, token, cardURL, mode, res)
if err != nil {
return nil, err
}
return res, nil
}
// VehicleLicense 通过文件识别行驶证
func (cli *Client) VehicleLicense(filename string, mode RecognizeMode) (*VehicleLicenseResponse, error) {
api := baseURL + apiVehicleLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.vehicleLicense(api, token, filename, mode)
}
func (cli *Client) vehicleLicense(api, token, filename string, mode RecognizeMode) (*VehicleLicenseResponse, error) {
res := new(VehicleLicenseResponse)
err := cli.ocrByFile(api, token, filename, mode, res)
if err != nil {
return nil, err
}
return res, err
}
// LicensePoint 证件点
type LicensePoint struct {
X uint `json:"x"`
Y uint `json:"y"`
}
// LicensePosition 证件位置
type LicensePosition struct {
LeftTop LicensePoint `json:"left_top"`
RightTop LicensePoint `json:"right_top"`
RightBottom LicensePoint `json:"right_bottom"`
LeftBottom LicensePoint `json:"left_bottom"`
}
// BusinessLicenseResponse 营业执照 OCR 识别返回数据
type BusinessLicenseResponse struct {
request.CommonError
RegNum string `json:"reg_num"` // 注册号
Serial string `json:"serial"` // 编号
LegalRepresentative string `json:"legal_representative"` // 法定代表人姓名
EnterpriseName string `json:"enterprise_name"` // 企业名称
TypeOfOrganization string `json:"type_of_organization"` // 组成形式
Address string `json:"address"` // 经营场所/企业住所
TypeOfEnterprise string `json:"type_of_enterprise"` // 公司类型
BusinessScope string `json:"business_scope"` // 经营范围
RegisteredCapital string `json:"registered_capital"` // 注册资本
PaidInCapital string `json:"paid_in_capital"` // 实收资本
ValidPeriod string `json:"valid_period"` // 营业期限
RegisteredDate string `json:"registered_date"` // 注册日期/成立日期
CertPosition struct {
Position LicensePosition `json:"pos"`
} `json:"cert_position"` // 营业执照位置
ImgSize LicensePoint `json:"img_size"` // 图片大小
}
// BusinessLicenseByURL 通过链接进行营业执照 OCR 识别
func (cli *Client) BusinessLicenseByURL(cardURL string) (*BusinessLicenseResponse, error) {
api := baseURL + apiBusinessLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.businessLicenseByURL(api, token, cardURL)
}
func (cli *Client) businessLicenseByURL(api, token, cardURL string) (*BusinessLicenseResponse, error) {
res := new(BusinessLicenseResponse)
err := cli.ocrByURL(api, token, cardURL, "", res)
if err != nil {
return nil, err
}
return res, nil
}
// BusinessLicense 通过文件进行营业执照 OCR 识别
func (cli *Client) BusinessLicense(filename string) (*BusinessLicenseResponse, error) {
api := baseURL + apiBusinessLicense
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.businessLicense(api, token, filename)
}
func (cli *Client) businessLicense(api, token, filename string) (*BusinessLicenseResponse, error) {
res := new(BusinessLicenseResponse)
err := cli.ocrByFile(api, token, filename, "", res)
if err != nil {
return nil, err
}
return res, err
}
// PrintedTextResponse 通用印刷体 OCR 识别返回数据
type PrintedTextResponse struct {
request.CommonError
Items []struct {
Text string `json:"text"`
Position LicensePosition `json:"pos"`
} `json:"items"` // 识别结果
ImgSize LicensePoint `json:"img_size"` // 图片大小
}
// PrintedTextByURL 通过链接进行通用印刷体 OCR 识别
func (cli *Client) PrintedTextByURL(cardURL string) (*PrintedTextResponse, error) {
api := baseURL + apiPrintedText
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.printedTextByURL(api, token, cardURL)
}
func (cli *Client) printedTextByURL(api, token, cardURL string) (*PrintedTextResponse, error) {
res := new(PrintedTextResponse)
err := cli.ocrByURL(api, token, cardURL, "", res)
if err != nil {
return nil, err
}
return res, nil
}
// PrintedText 通过文件进行通用印刷体 OCR 识别
func (cli *Client) PrintedText(filename string) (*PrintedTextResponse, error) {
api := baseURL + apiPrintedText
token, err := cli.AccessToken()
if err != nil {
return nil, err
}
return cli.printedText(api, token, filename)
}
func (cli *Client) printedText(api, token, filename string) (*PrintedTextResponse, error) {
res := new(PrintedTextResponse)
err := cli.ocrByFile(api, token, filename, "", res)
if err != nil {
return nil, err
}
return res, err
}
func (cli *Client) ocrByFile(api, token, filename string, mode RecognizeMode, response interface{}) error {
queries := requestQueries{
"access_token": token,
"type": mode,
}
url, err := request.EncodeURL(api, queries)
if err != nil {
return err
}
if err := cli.request.FormPostWithFile(url, "img", filename, response); err != nil {
return err
}
return nil
}
func (cli *Client) ocrByURL(api, token, cardURL string, mode RecognizeMode, response interface{}) error {
queries := requestQueries{
"access_token": token,
"img_url": cardURL,
}
if mode != "" {
queries["type"] = mode
}
url, err := request.EncodeURL(api, queries)
if err != nil {
return err
}
if err := cli.request.Post(url, nil, response); err != nil {
return err
}
return nil
}