-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathageRecognition.py
67 lines (56 loc) · 1.46 KB
/
ageRecognition.py
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
import json
import urllib
import requests
import os
import sys
import math
def getImagePaths():
paths = []
path = "public/images/" + sys.argv[1] + "/Profile"
for root, dirs, files in os.walk(path):
for file_ in files:
paths.append(os.path.join(root, file_))
return paths
config = json.load(open('config.json'))["Azure"]
headers = {
'Content-Type': 'application/octet-stream',
'Ocp-Apim-Subscription-Key': config['api_key'],
}
params = {
'returnFaceId': 'false',
'returnFaceLandmarks': 'false',
'returnFaceAttributes': 'age,gender',
}
url = (config['url'] + 'detect?%s') % params
paths = getImagePaths()
faceList = []
for path in paths:
f = open(path, "rb")
body = f.read()
f.close()
response = requests.post(url, body, params=params, headers=headers)
faceList.append(response)
if response.status_code != 200:
raise ValueError(
'Request to Azure returned an error %s, the response is:\n%s'
% (response.status_code, response.text)
)
male = []
female = []
for face in faceList:
attributes = (face.json())[0]['faceAttributes']
if (attributes['gender'] == 'male'):
male.append(attributes['age'])
else:
female.append(attributes['age'])
if (len(male) > len(female)):
ageSum = 0
for age in male:
ageSum += age
ageSum = ageSum / len(male)
else:
ageSum = 0
for age in female:
ageSum += age
ageSum = ageSum / len(female)
print(math.floor(ageSum));