-
Notifications
You must be signed in to change notification settings - Fork 0
/
persons.go
153 lines (130 loc) · 4.7 KB
/
persons.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
package vision
import (
"log"
)
type ImageMeta struct {
Name string `json:"name"`
PersonId int `json:"person_id"`
}
//==========================================================
//==========================SET=============================
//==========================================================
type MetaSet struct {
Space string `json:"space"`
Images []ImageMeta `json:"images"`
}
type ResponseSetOk struct {
Status int `json:"status"`
Body struct {
Objects []struct {
Name string `json:"name"`
Status int `json:"status"`
Error string `json:"error"`
} `json:"objects"`
} `json:"body"`
}
func (vision *visionClient) PersonsSet(meta MetaSet) (*ResponseSetOk, *ResponseError) {
requestUrl := vision.persons.domain + "/set?" + "oauth_provider=mcs&oauth_token=" + vision.token
body := sendPostRequest(vision.client, requestUrl, meta)
var respOk *ResponseSetOk
var respErr *ResponseError
err := unmarshalResponse(body, &respOk, &respErr)
if err != nil {
log.Panicln("Error unmarshaling body: " + string(body))
}
return respOk, respErr
}
//==========================================================
//========================RECOGNIZE=========================
//==========================================================
type MetaRecognize struct {
Space string `json:"space"`
Images []ImageMeta `json:"images"`
CreateNew bool `json:"create_new"`
UpdateEmbedding bool `json:"update_embedding"`
}
type ResponseRecognizeOk struct {
Status int `json:"status"`
AliasesChanged bool `json:"aliases_changed"`
Body struct {
Objects []struct {
Status int `json:"status"`
Error string `json:"error"`
Name string `json:"name"`
CountByDensity int `json:"count_by_density"`
Persons []struct {
Tag string `json:"tag"`
Coord []int `json:"coord"`
Aliases []string `json:"aliases"`
Confidence float64 `json:"confidence"`
Similarity float64 `json:"similarity"`
Awesomeness float64 `json:"awesomeness"`
Sex string `json:"sex"`
Age float64 `json:"age"`
Emotion string `json:"emotion"`
Valence float64 `json:"valence"`
Arousal float64 `json:"arousal"`
} `json:"persons"`
} `json:"objects"`
} `json:"body"`
}
func (vision *visionClient) PersonsRecognize(meta MetaRecognize) (*ResponseRecognizeOk, *ResponseError) {
requestUrl := vision.persons.domain + "/recognize?" + "oauth_provider=mcs&oauth_token=" + vision.token
body := sendPostRequest(vision.client, requestUrl, meta)
var respOk *ResponseRecognizeOk
var respErr *ResponseError
err := unmarshalResponse(body, &respOk, &respErr)
if err != nil {
log.Panicln("Error unmarshaling body: " + string(body))
}
return respOk, respErr
}
//==========================================================
//==========================DELETE==========================
//==========================================================
type MetaDelete struct {
Space string `json:"space"`
Images []ImageMeta `json:"images"`
}
type ResponseDeleteOk struct {
Status int `json:"status"`
Body struct {
Objects []struct {
Name string `json:"name"`
Status int `json:"status"`
Error string `json:"error"`
} `json:"objects"`
} `json:"body"`
}
func (vision *visionClient) PersonsDelete(meta MetaDelete) (*ResponseDeleteOk, *ResponseError) {
requestUrl := vision.persons.domain + "/delete?" + "oauth_provider=mcs&oauth_token=" + vision.token
body := sendPostRequest(vision.client, requestUrl, meta)
var respOk *ResponseDeleteOk
var respErr *ResponseError
err := unmarshalResponse(body, &respOk, &respErr)
if err != nil {
log.Panicln("Error unmarshaling body: " + string(body))
}
return respOk, respErr
}
//==========================================================
//=========================TRUNCATE=========================
//==========================================================
type MetaTruncate struct {
Space string `json:"space"`
}
type ResponseTruncateOk struct {
Status int `json:"status"`
Body struct{} `json:"body"`
}
func (vision *visionClient) PersonsTruncate(meta MetaTruncate) (*ResponseTruncateOk, *ResponseError) {
requestUrl := vision.persons.domain + "/truncate?" + "oauth_provider=mcs&oauth_token=" + vision.token
body := sendPostRequest(vision.client, requestUrl, meta)
var respOk *ResponseTruncateOk
var respErr *ResponseError
err := unmarshalResponse(body, &respOk, &respErr)
if err != nil {
log.Panicln("Error unmarshaling body: " + string(body))
}
return respOk, respErr
}