Toggle navigation
Toggle navigation
This project
Loading...
Sign in
조아혜
/
cfr-chatbot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
daeun
2020-12-03 21:05:37 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
54ac9b8a651935de3c28834be0a56729ff55ab3f
54ac9b8a
1 parent
5f672c15
modify cfr_test to cfr_module
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
32 additions
and
0 deletions
cfr_module.js
cfr_module.js
0 → 100644
View file @
54ac9b8
var
client_id
=
'v3M4wjolGLkrvNA3GUIW'
;
var
client_secret
=
'fKF6vjkWhE'
;
var
fs
=
require
(
'fs'
);
var
request
=
require
(
'request'
);
exports
.
imgtodata
=
function
(
dir
){
var
api_url
=
'https://openapi.naver.com/v1/vision/face'
;
// 얼굴 감지
var
_formData
=
{
image
:
'image'
,
image
:
fs
.
createReadStream
(
__dirname
+
dir
)
// FILE 이름
};
request
.
post
(
{
url
:
api_url
,
formData
:
_formData
,
headers
:
{
'X-Naver-Client-Id'
:
client_id
,
'X-Naver-Client-Secret'
:
client_secret
}
},
(
err
,
response
,
body
)
=>
{
console
.
log
(
response
.
statusCode
);
// 200
//console.log(response.headers['content-type'])
data
=
JSON
.
parse
(
body
);
gender
=
data
.
faces
[
0
].
gender
.
value
;
emotion
=
data
.
faces
[
0
].
emotion
.
value
console
.
log
(
gender
);
console
.
log
(
emotion
);
return
{
gender
:
gender
,
emotion
:
emotion
};
});
}
\ No newline at end of file
Please
register
or
login
to post a comment