관리 메뉴

웹개발자의 기지개

[python] Naver Clova Face Recognition 얼굴인식 테스트 본문

python

[python] Naver Clova Face Recognition 얼굴인식 테스트

http://portfolio.wonpaper.net 2020. 7. 13. 04:46

잠깐 네이버 얼굴 인식 테스트로 돌려 보았다.

 

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#네이버 Clova 얼굴인식 테스트
 
import os
import sys
import requests
client_id = "----------------"
client_secret = "------------"
# url = "https://openapi.naver.com/v1/vision/face" # 얼굴감지
url = "https://openapi.naver.com/v1/vision/celebrity" # 유명인 얼굴인식
files = {'image'open('aaa.jpg''rb')}
headers = {'X-Naver-Client-Id': client_id, 'X-Naver-Client-Secret': client_secret }
response = requests.post(url,  files=files, headers=headers)
rescode = response.status_code
if(rescode==200):
    print (response.text)
else:
    print("Error Code:" + rescode)
 
## 실행 결과 ##
{"info":{"size":{"width":320,"height":444},"faceCount":1},"faces":[{"celebrity":{"value":"야마시타다이키","confidence":0.45419}}]}
cs

 

네이버 AI 가 45 % 정도 정확성을 띠는 것으로 나오는데, 내가 보기엔 좀 ^^;;;

 

 

Comments