-
Notifications
You must be signed in to change notification settings - Fork 0
/
youtu.go
682 lines (588 loc) · 23 KB
/
youtu.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
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
/*
* File Name: youtu.go
* Description: http://open.youtu.qq.com API
* Author: Chapman Ou <ochapman.cn@gmail.com>
* Created: 2015-06-19
*/
package youtu
import (
"encoding/base64"
"errors"
"strconv"
)
const (
//UserIDMaxLen 用户ID的最大长度
UserIDMaxLen = 110
)
const expiredInterval = 1000
var (
//ErrUserIDTooLong 用户ID过长错误
ErrUserIDTooLong = errors.New("user id too long")
)
var (
//DefaultHost 默认host
DefaultHost = "http://api.youtu.qq.com"
)
var (
//腾讯云host
TencentYunHost = "https://youtu.api.qcloud.com"
)
//AppSign 应用签名鉴权
type AppSign struct {
appID uint32 //接入优图服务时,生成的唯一id, 用于唯一标识接入业务
secretID string //标识api鉴权调用者的密钥身份
secretKey string //用于加密签名字符串和服务器端验证签名字符串的密钥,secret_key 必须严格保管避免泄露
userID string //接入业务自行定义的用户id,用于唯一标识一个用户, 登陆开发者账号的QQ号码
}
//NewAppSign 新建应用签名
func NewAppSign(appID uint32, secretID string, secretKey string, userID string) (as AppSign, err error) {
if len(userID) > UserIDMaxLen {
err = ErrUserIDTooLong
return
}
as = AppSign{
appID: appID,
secretID: secretID,
secretKey: secretKey,
userID: userID,
}
return
}
//Youtu 存储签名和host
type Youtu struct {
appSign AppSign
host string
debug bool //Default false
}
func (y *Youtu) appID() string {
return strconv.Itoa(int(y.appSign.appID))
}
//Init Youtu初始化
func Init(appSign AppSign, host string) *Youtu {
return &Youtu{
appSign: appSign,
host: host,
debug: false,
}
}
//detectMode 检测模式,分正常和大脸
type detectMode int
const (
//detectModeNormal 正常模式
detectModeNormal detectMode = iota
//detectModeBigFace 大脸模式
detectModeBigFace
)
func mode(isBigFace bool) detectMode {
if isBigFace {
return detectModeBigFace
}
return detectModeNormal
}
// SetDebug For Debug
func (y *Youtu) SetDebug(isDebug bool) {
y.debug = isDebug
}
type detectFaceReq struct {
AppID string `json:"app_id"` //App的 API ID
Image string `json:"image,omitempty"` //base64编码的二进制图片数据
Mode detectMode `json:"mode,omitempty"` //检测模式 0/1 正常/大脸模式
Url string `json:"url,omitempty"` //图片的url
}
//Face 脸参数
type Face struct {
FaceID string `json:"face_id"` //人脸标识
X int32 `json:"x"` //人脸框左上角x
Y int32 `json:"y"` //人脸框左上角y
Width float32 `json:"width"` //人脸框宽度
Height float32 `json:"height"` //人脸框高度
Gender int32 `json:"gender"` //性别 [0/(female)~100(male)]
Age int32 `json:"age"` //年龄 [0~100]
Expression int32 `json:"expression"` //object 微笑[0(normal)~50(smile)~100(laugh)]
Glass bool `json:"glass"` //是否有眼镜 [true,false]
Pitch int32 `json:"pitch"` //上下偏移[-30,30]
Yaw int32 `json:"yaw"` //左右偏移[-30,30]
Roll int32 `json:"roll"` //平面旋转[-180,180]
Beauty int32 `json:"beauty"` //魅力值 [0~100]
}
//DetectFaceRsp 脸检测返回
type DetectFaceRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符,可用于结果查询
ImageWidth int32 `json:"image_width"` //请求图片的宽度
ImageHeight int32 `json:"image_height"` //请求图片的高度
Face []Face `json:"face"` //被检测出的人脸Face的列表
ErrorCode int `json:"errorcode"` //返回状态值
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//DetectFace 检测给定图片(Image)中的所有人脸(Face)的位置和相应的面部属性。
//位置包括(x, y, w, h),面部属性包括性别(gender), 年龄(age), 魅力值(beauty)
//表情(expression), 眼镜(glass)和姿态(pitch,roll,yaw).
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) DetectFace(image []byte, isBigFace bool, imageType int) (rsp DetectFaceRsp, err error) {
var req detectFaceReq
req.AppID = strconv.Itoa(int(y.appSign.appID))
req.Mode = mode(isBigFace)
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("detectface", req, &rsp, 0)
return
}
type faceShapeReq struct {
AppID string `json:"app_id"` //App的 API ID
Image string `json:"image,omitempty"` //base64编码的二进制图片数据
Mode detectMode `json:"mode,omitempty"` //检测模式 0/1 正常/大脸模式
Url string `json:"url,omitempty"` //图片的url
}
type pos struct {
X int `json:"x"`
Y int `json:"y"`
}
//FaceShape 五官定位
type FaceShape struct {
FaceProfile []pos `json:"face_profile"` //描述脸型轮廓的21点
LeftEye []pos `json:"left_eye"` //描述左眼轮廓的8点
RightEye []pos `json:"right_eye"` //描述右眼轮廓的8点
LeftEyebrow []pos `json:"left_eyebrow"` //描述左眉轮廓的8点
RightEyebrow []pos `json:"right_eyebrow"` //描述右眉轮廓的8点
Mouth []pos `json:"mouth"` //描述嘴巴轮廓的22点
Nose []pos `json:"nose"` //描述鼻子轮廓的13点
}
// FaceShapeRsp 返回
type FaceShapeRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符,可用于结果查询
FaceShape []FaceShape `json:"face_shape"` //人脸轮廓结构体,包含所有人脸的轮廓点
ImageWidth int `json:"image_width"` //请求图片的宽度
ImageHeight int `json:"image_height"` //请求图片的高度
ErrorCode int `json:"errorcode"` //返回状态值
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FaceShape 对请求图片进行五官定位,计算构成人脸轮廓的88个点,包括眉毛(左右各8点)、眼睛(左右各8点)、鼻子(13点)、嘴巴(22点)、脸型轮廓(21点)
//imageType 表示image的类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FaceShape(image []byte, isBigFace bool, imageType int) (rsp FaceShapeRsp, err error) {
var req faceShapeReq
req.AppID = strconv.Itoa(int(y.appSign.appID))
req.Mode = mode(isBigFace)
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("faceshape", req, &rsp, 0)
return
}
type faceCompareReq struct {
AppID string `json:"app_id"`
ImageA string `json:"imageA,omitempty"` //使用base64编码的二进制图片数据A
ImageB string `json:"imageB,omitempty"` //使用base64编码的二进制图片数据B
UrlA string `json:"urlA,omitempty"` //图片A的url
UrlB string `json:"urlB,omitempty"` //图片B的url
}
//FaceCompareRsp 脸比较返回
type FaceCompareRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符,可用于结果查询
Similarity float32 `json:"similarity"` //两个face的相似度
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FaceCompare 计算两个Face的相似性以及五官相似度
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FaceCompare(imageA, imageB []byte, imageType int) (rsp FaceCompareRsp, err error) {
var req faceCompareReq
req.AppID = y.appID()
if imageType == 0 {
req.ImageA = base64.StdEncoding.EncodeToString(imageA)
req.ImageB = base64.StdEncoding.EncodeToString(imageB)
} else {
req.UrlA = string(imageA)
req.UrlB = string(imageB)
}
err = y.interfaceRequest("facecompare", req, &rsp, 0)
return
}
type faceVerifyReq struct {
AppID string `json:"app_id"` //App的 API ID
Image string `json:"image"` //使用base64编码的二进制图片数据
PersonID string `json:"person_id"` //待验证的Person
Url string `json:"url,omitempty"` //图片的url
}
//FaceVerifyRsp 脸验证返回
type FaceVerifyRsp struct {
Ismatch bool `json:"ismatch"` //两个输入是否为同一人的判断
Confidence float32 `json:"confidence"` //系统对这个判断的置信度。
SessionID string `json:"session_id"` //相应请求的session标识符,可用于结果查询
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FaceVerify 给定一个Face和一个Person,返回是否是同一个人的判断以及信度。
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FaceVerify(personID string, image []byte, imageType int) (rsp FaceVerifyRsp, err error) {
var req faceVerifyReq
req.AppID = y.appID()
req.PersonID = personID
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("faceverify", req, &rsp, 0)
return
}
type faceIdentifyReq struct {
AppID string `json:"app_id"` //App的 API ID
GroupID string `json:"group_id"` //候选人组id
Image string `json:"image,omitempty"` //使用base64编码的二进制图片数据
Url string `json:"url,omitempty"` //图片的url
}
type Candidate struct {
PersonID string `json:"person_id"` //识别结果,person_id
FaceID string `json:"face_id"` //识别的face_id
Confidence float32 `json:"confidence"` //置信度
Tag string `json:"tag"` //人脸备注信息[]
}
//FaceIdentifyRsp 脸识别返回
type FaceIdentifyRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符,可用于结果查询
Candidates []Candidate `json:"candidates"` //识别出的top5候选人
ErrorCode int `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FaceIdentify 对于一个待识别的人脸图片,在一个Group中识别出最相似的Person作为其身份返回
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FaceIdentify(groupID string, image []byte, imageType int) (rsp FaceIdentifyRsp, err error) {
var req faceIdentifyReq
req.AppID = y.appID()
req.GroupID = groupID
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("faceidentify", req, &rsp, 0)
return
}
type newPersonReq struct {
AppID string `json:"app_id"` //App的 API ID
Image string `json:"image,omitempty"` //使用base64编码的二进制图片数据
PersonID string `json:"person_id"`
GroupIDs []string `json:"group_ids"` // 加入到组的列表
PersonName string `json:"person_name,omitempty"` //名字
Tag string `json:"tag,omitempty"` //备注信息
Url string `json:"url,omitempty"` //图片的url
}
//NewPersonRsp 个体创建返回
type NewPersonRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符
SucGroup int `json:"suc_group"` //成功被加入的group数量
SucFace int `json:"suc_face"` //成功加入的face数量
PersonID string `json:"person_id"` //相应person的id
FaceID string `json:"face_id"` //创建所用图片生成的face_id
GroupIds []string `json:"group_ids"` //加入成功的组id
ErrorCode int `json:"errorcode"` //返回码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//NewPerson 创建一个Person,并将Person放置到group_ids指定的组当中
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) NewPerson(personID string, personName string, groupIDs []string, image []byte, tag string, imageType int) (rsp NewPersonRsp, err error) {
var req newPersonReq
req.AppID = y.appID()
req.PersonID = personID
req.GroupIDs = groupIDs
req.PersonName = personName
req.Tag = tag
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("newperson", req, &rsp, 0)
return
}
type delPersonReq struct {
AppID string `json:"app_id"`
PersonID string `json:"person_id"` //待删除个体ID
}
//DelPersonRsp 删除个体返回
type DelPersonRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符
Deleted int `json:"deleted"` //成功删除的Person数量
PersonID string `json:"person_id"` //相应person的id
ErrorCode int `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//DelPerson 删除一个Person
func (y *Youtu) DelPerson(personID string) (rsp DelPersonRsp, err error) {
req := delPersonReq{
AppID: y.appID(),
PersonID: personID,
}
err = y.interfaceRequest("delperson", req, &rsp, 0)
return
}
type addFaceReq struct {
AppID string `json:"app_id"` //App的 API ID
PersonID string `json:"person_id"` //String 待增加人脸的个体id
Images []string `json:"images,omitempty"` //base64编码的二进制图片数据构成的数组
Tag string `json:"tag,omitempty"` //备注信息
Urls []string `json:"urls,omitempty"` //图片的url
}
//AddFaceRsp 增加人脸返回
type AddFaceRsp struct {
SessionID string `json:"session_id"` //相应请求的session标识符
Added int `json:"added"` //成功加入的face数量
FaceIDs []string `json:"face_ids"` //增加的人脸ID列表
RetCodes []int `json:"ret_codes"` //每张图片增加人脸的返回码[]
ErrorCode int `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//AddFace 将一组Face加入到一个Person中。注意,一个Face只能被加入到一个Person中。
//一个Person最多允许包含10000个Face
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) AddFace(personID string, images [][]byte, tag string, imageType int) (rsp AddFaceRsp, err error) {
var req addFaceReq
req.AppID = y.appID()
req.PersonID = personID
req.Tag = tag
imageDatas := make([]string, len(images))
if imageType == 0 {
for i, img := range images {
imageDatas[i] = base64.StdEncoding.EncodeToString([]byte(img))
}
req.Images = imageDatas
} else {
for i, img := range images {
imageDatas[i] = string([]byte(img))
}
req.Urls = imageDatas
}
err = y.interfaceRequest("addface", req, &rsp, 0)
return
}
type delFaceReq struct {
AppID string `json:"app_id"` //App的 API ID
PersonID string `json:"person_id"` //待删除人脸的person ID
FaceIDs []string `json:"face_ids"` //删除人脸id的列表
}
//DelFaceRsp 删除人脸返回
type DelFaceRsp struct {
SessonID string `json:"session_id"` //相应请求的session标识符
Deleted int32 `json:"deleted"` //成功删除的face数量
FaceIDs []string `json:"face_ids"` //成功删除的人脸ID列表
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//DelFace 删除一个person下的face,包括特征,属性和face_id.
func (y *Youtu) DelFace(personID string, faceIDs []string) (rsp DelFaceRsp, err error) {
req := delFaceReq{
AppID: y.appID(),
PersonID: personID,
FaceIDs: faceIDs,
}
err = y.interfaceRequest("delface", req, &rsp, 0)
return
}
type setInfoReq struct {
AppID string `json:"app_id"` //App的 API ID
PersonID string `json:"person_id"`
PersonName string `json:"person_name,omitempty"` //新的name
Tag string `json:"tag,omitempty"` //备注信息
}
//SetInfoRsp 设置信息返回
type SetInfoRsp struct {
SessonID string `json:"session_id"` //相应请求的session标识符
PersonID string `json:"person_id"` //待删除人脸的person ID
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//SetInfo 设置Person的name.
func (y *Youtu) SetInfo(personID string, personName string, tag string) (rsp SetInfoRsp, err error) {
req := setInfoReq{
AppID: y.appID(),
PersonID: personID,
PersonName: personName,
Tag: tag,
}
err = y.interfaceRequest("setinfo", req, &rsp, 0)
return
}
type getInfoReq struct {
AppID string `json:"app_id"` //App的 API ID
PersonID string `json:"person_id"` //待查询个体的ID
}
//GetInfoRsp 获取信息返回
type GetInfoRsp struct {
PersonName string `json:"person_name"` //相应person的name
PersonID string `json:"person_id"` //相应person的id
GroupIDs []string `json:"group_ids"` //包含此个体的组列表
FaceIDs []string `json:"face_ids"` //包含的人脸列表
SessionID string `json:"session_id"` //相应请求的session标识符
ErrorCode int `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//GetInfo 获取一个Person的信息, 包括name, id, tag, 相关的face, 以及groups等信息。
func (y *Youtu) GetInfo(personID string) (rsp GetInfoRsp, err error) {
req := getInfoReq{
AppID: y.appID(),
PersonID: personID,
}
err = y.interfaceRequest("getinfo", req, &rsp, 0)
return
}
type getGroupIDsReq struct {
AppID string `json:"app_id"` //App的 API ID
}
//GetGroupIDsRsp 获取组ID返回
type GetGroupIDsRsp struct {
GroupIDs []string `json:"group_ids"` //相应app_id的group_id列表
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//GetGroupIDs 获取一个appId下所有group列表
func (y *Youtu) GetGroupIDs() (rsp GetGroupIDsRsp, err error) {
req := getGroupIDsReq{
AppID: y.appID(),
}
err = y.interfaceRequest("getgroupids", req, &rsp, 0)
return
}
type getPersonIDsReq struct {
AppID string `json:"app_id"` //App的 API ID
GroupID string `json:"group_id"` //组id
}
//GetPersonIDsRsp 获取个人ID返回
type GetPersonIDsRsp struct {
PersonIDs []string `json:"person_ids"` //相应person的id列表
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//GetPersonIDs 获取一个组Group中所有person列表
func (y *Youtu) GetPersonIDs(groupID string) (rsp GetPersonIDsRsp, err error) {
req := getPersonIDsReq{
AppID: y.appID(),
GroupID: groupID,
}
err = y.interfaceRequest("getpersonids", req, &rsp, 0)
return
}
type getFaceIDsReq struct {
AppID string `json:"app_id"` //App的 API ID
PersonID string `json:"person_id"` //个体id
}
//GetFaceIDsRsp 获取脸ID返回
type GetFaceIDsRsp struct {
FaceIDs []string `json:"face_ids"` //相应face的id列表
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//GetFaceIDs 获取一个组person中所有face列表
func (y *Youtu) GetFaceIDs(personID string) (rsp GetFaceIDsRsp, err error) {
req := getFaceIDsReq{
AppID: y.appID(),
PersonID: personID,
}
err = y.interfaceRequest("getfaceids", req, &rsp, 0)
return
}
type getFaceInfoReq struct {
AppID string `json:"app_id"` //App的 API ID
FaceID string `json:"face_id"` //人脸id
}
//GetFaceInfoRsp 获取脸部信息返回
type GetFaceInfoRsp struct {
FaceInfo Face `json:"face_info"` //人脸信息
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//GetFaceInfo 获取一个face的相关特征信息
func (y *Youtu) GetFaceInfo(faceID string) (rsp GetFaceInfoRsp, err error) {
req := getFaceInfoReq{
AppID: y.appID(),
FaceID: faceID,
}
err = y.interfaceRequest("getfaceinfo", req, &rsp, 0)
return
}
type FuzzyDetectReq struct{
AppID string `json:"app_id"` //App的 API ID
Url string `json:"url,omitempty"` //图片的url
Image string `json:"image,omitempty"` //使用base64编码的二进制图片数据
Seq string `json:"seq,omitempty"` // 序列号
}
type FuzzyDetectRsp struct{
Fuzzy bool `json:"fuzzy"` // 是否模糊
FuzzyConfidence float32 `json:"fuzzy_confidence"` //范围 0-1的浮点数,越大置信度越高
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FuzzyDetect 检测图片的模糊度
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FuzzyDetect(image []byte, imageType int, seq string) (rsp FuzzyDetectRsp, err error) {
var req FuzzyDetectReq
req.AppID = y.appID()
req.Seq = seq
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("fuzzydetect", req, &rsp, 1)
return
}
type FoodDetectReq struct{
AppID string `json:"app_id"` //App的 API ID
Url string `json:"url,omitempty"` //图片的url
Image string `json:"image,omitempty"` //使用base64编码的二进制图片数据
Seq string `json:"seq,omitempty"` // 序列号
}
type FoodDetectRsp struct{
Food bool `json:"food"` // 是否美食
FoodConfidence float32 `json:"food_confidence"`
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//FoodDetect 美食检测
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) FoodDetect(image []byte, imageType int, seq string) (rsp FoodDetectRsp, err error) {
var req FoodDetectReq
req.AppID = y.appID()
req.Seq = seq
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("fooddetect", req, &rsp, 1)
return
}
type ImageTagReq struct{
AppID string `json:"app_id"` //App的 API ID
Url string `json:"url,omitempty"` //图片的url
Image string `json:"image,omitempty"` //使用base64编码的二进制图片数据
Seq string `json:"seq,omitempty"` // 序列号
}
type ImageTag struct {
TagName string `json:"tag_name"`
TagConfidence int `json:"tag_confidence"`
}
type ImageTagRsp struct{
Seq string `json:"seq,omitempty"` // 序列号
Tags []ImageTag `json:"tags"`
ErrorCode int32 `json:"errorcode"` //返回状态码
ErrorMsg string `json:"errormsg"` //返回错误消息
}
//ImageTag 图片分类
//imageType 表示image类型是图片还是URL, 其中0代表图片,1代表url
func (y *Youtu) ImageTag(image []byte, imageType int, seq string) (rsp ImageTagRsp, err error) {
var req FoodDetectReq
req.AppID = y.appID()
req.Seq = seq
if imageType == 0 {
req.Image = base64.StdEncoding.EncodeToString(image)
} else {
req.Url = string(image)
}
err = y.interfaceRequest("imagetag", req, &rsp, 1)
return
}