-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot_face_data_creator.py
254 lines (208 loc) · 9.79 KB
/
bot_face_data_creator.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
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
'''
bot_face_data_creator.py
ボイスアシスタントの顔認証と年齢性別データを作成するためのスクリプトです
カメラからユーザーの顔を検出し、顔画像を収集して特徴量を抽出し、性別と年齢を推論してJSONファイルに保存します
顔認証システムのトレーニングやデータ収集に使用します
'''
import cv2
import numpy as np
import time, json
from pathlib import Path
from bot_motor_controller import pan_tilt, neopixels_all, neopixels_off
class Camera():
def __init__(self):
self.cap = cv2.VideoCapture(0)
self.cap.set(3, 640)
self.cap.set(4, 480)
def get_frame(self):
ret, frame = self.cap.read()
if ret:
return frame
else:
print("🖥️ SYSTEM: カメラからのフレーム取得に失敗しました。")
return None
def release_camera(self):
self.cap.release()
# jsonファイルを作成する関数
def save_json(id, name, image, feature, gender, age, category, interested):
user = {id:{
"id": id,
"name": name,
"image": image,
"feature": feature,
"gender": gender,
"age": age,
"category": category,
"interested": interested
}
}
isempty = Path("data/user_data.json").stat().st_size == 0
if isempty is True:
with open(Path("data/user_data.json"), "w") as file:
json.dump(user, file, ensure_ascii=False, indent=4)
else:
with open(Path("data/user_data.json")) as file:
load_user = json.load(file)
save_user = dict(load_user, **user)
with open(Path("data/user_data.json"), 'w') as file:
json.dump(save_user, file, ensure_ascii=False, indent=4)
def face_date_create():
# 顔認識モデルの読み込み
face_detector_weights = str(Path("dnn_models/yunet.onnx").resolve())
#face_detector_weights = str(Path("dnn_models/yunet_s_640_640.onnx").resolve())
face_detector = cv2.FaceDetectorYN_create(face_detector_weights, "", (0, 0))
# 顔識別モデルを読み込む
face_recognizer_weights = str(Path("dnn_models/face_recognizer_fast.onnx").resolve())
face_recognizer = cv2.FaceRecognizerSF_create(face_recognizer_weights, "")
# 年齢識別モデルを読み込む
ageProto = str(Path("dnn_models/age_deploy.prototxt").resolve())
ageModel = str(Path("dnn_models/age_net.caffemodel").resolve())
# 性別識別モデルを読み込む
genderProto = str(Path("dnn_models/gender_deploy.prototxt").resolve())
genderModel = str(Path("dnn_models/gender_net.caffemodel").resolve())
MODEL_MEAN_VALUES = (78.4263377603, 87.7689143744, 114.895847746)
ageList = ['(0-2)', '(4-6)', '(8-12)', '(15-20)', '(25-32)', '(38-43)', '(48-53)', '(60-100)']
genderList = ['male', 'female']
# DNNネットワークに接続
ageNet = cv2.dnn.readNet(ageModel, ageProto)
genderNet = cv2.dnn.readNet(genderModel, genderProto)
# CPU使用を指定
ageNet.setPreferableBackend(cv2.dnn.DNN_TARGET_CPU)
genderNet.setPreferableBackend(cv2.dnn.DNN_TARGET_CPU)
# ユーザーデータの初期化
user_id = ""
user_name = ""
user_image = ""
user_feature = ""
user_gender = ""
user_age = ""
user_category = ""
user_interested = ""
# ユーザー名、ユーザーIDの入力
print("🖥️ SYSTEM: ユーザー名をひらがな(またはカタカナ)で入力してEterキーを押してください")
user_name = input("> ")
print("🖥️ SYSTEM: ユーザーIDをアルファベット(正規表現)で入力してEnterキーを押してください")
user_id = input("> ")
print("🖥️ SYSTEM: 興味のあることをひとつ入力してEnterキーを押してください")
user_interested = input("> ")
print("🖥️ SYSTEM: 画像データを 撮影します\n撮影はSキーを押してください\n終了はQキーを押してください")
# カメラのデフォルトのパン/チルト (度単位)。コードを開始するときに、おおよその顔の位置を指すように設定しました
# カメラの範囲は 0 ~ 180 です。以下の値を変更して、パンとチルトの開始点を決定します。
cam_pan = 90
cam_tilt = 60
# カメラを開始位置に向けます (pan() 関数とtilt() 関数が期待するデータは -90 度から 90 度までの任意の数値です)
pan_tilt(cam_pan-90,cam_tilt-90)
cam = Camera() # カメラオブジェクトを作成
neopixels_all(50, 50, 50)
while(True):
frame = cam.get_frame() # カメラからフレームを取得
frame = cv2.flip(frame, -1) # カメラ画像の上下を入れ替える
# 入力サイズを指定する
height, width, _ = frame.shape
face_detector.setInputSize((width, height))
# 顔を検出する
_, faces = face_detector.detect(frame)
faces = faces if faces is not None else []
# 検出した顔のバウンディングボックスとランドマークを描画する
frame_output = frame.copy()
for face in faces:
# バウンディングボックス
x, y, w, h = list(map(int, face[:4]))
color = (255, 255, 255)
thickness = 1
cv2.rectangle(frame_output, (x, y), (x + w, y + h), color, thickness, cv2.LINE_AA)
# ランドマーク(右目、左目、鼻、右口角、左口角)
landmarks = list(map(int, face[4:len(face)-1]))
landmarks = np.array_split(landmarks, len(landmarks) / 2)
for landmark in landmarks:
radius = 3
thickness = -1
cv2.circle(frame_output, landmark, radius, color, thickness, cv2.LINE_AA)
# 顔の中心を捉える
x = x + (w/2)
y = y + (h/2)
# 画像の中心を基準として補正
turn_x = float(x - (width / 2))
turn_y = float(y - (height / 2))
# オフセット・パーセンテージに変換
turn_x /= float(width / 2)
turn_y /= float(height / 2)
# Sスケールオフセットを度数に変換
#(下の2.5の値はPIDの比例係数のような働きをします)
turn_x *= 2.5 # VFOV
turn_y *= 2.5 # HFOV
cam_pan += -turn_x
cam_tilt += turn_y
# パン/チルト0~180度 に固定
cam_pan = max(0,min(180,cam_pan))
cam_tilt = max(0,min(180,cam_tilt))
# サーボの更新
pan_tilt(int(cam_pan-90),int(cam_tilt-90))
break
# 画像を表示する
cv2.imshow("face data create", frame_output)
key = cv2.waitKey(10)
if key == ord('s'):
# 検出された顔を切り抜く
aligned_faces = []
if faces is not None:
for face in faces:
aligned_face = face_recognizer.alignCrop(frame, face)
aligned_faces.append(aligned_face)
# 画像を保存する
for i, aligned_face in enumerate(aligned_faces):
user_image = user_id + ".jpg"
cv2.imwrite((str(Path("face_dataset/" + user_image))), aligned_face)
cv2.imshow("aligned_face", aligned_face)
# 特徴を抽出する
aligned_face_img = cv2.imread(str(Path("face_dataset/" + user_image)))
face_feature = face_recognizer.feature(aligned_face_img)
# 特徴を保存する
user_feature = user_id + ".npy"
dictionary = Path("face_dataset/" + user_feature)
np.save(dictionary , face_feature)
# 性別を推論する
blob = cv2.dnn.blobFromImage(frame_output, 1.0, (227, 227), MODEL_MEAN_VALUES, swapRB=False)
genderNet.setInput(blob)
genderPreds = genderNet.forward()
user_gender = genderList[genderPreds[0].argmax()]
print("🖥️ SYSTEM: 性別 : {}, conf = {:.3f}".format(user_gender, genderPreds[0].max()))
# 年齢を推論する
ageNet.setInput(blob)
agePreds = ageNet.forward()
user_age = ageList[agePreds[0].argmax()]
print("🖥️ SYSTEM: 年齢 : {}, conf = {:.3f}".format(user_age, agePreds[0].max()))
# カテゴリー分類
if user_age in ageList[:4]:
if user_gender == "male":
user_category = "boy"
else:
user_category = "girl"
elif user_age in ageList[4: 8]:
if user_gender == "male":
user_category = "man"
else:
user_category = "woman"
# jsonファイルを保存する
save_json(user_id, user_name, user_image, user_feature, user_gender, user_age, user_category, user_interested)
print("🖥️ SYSTEM: ユーザーデータ\n"
f"ID: {user_id} \n"
f"名前: {user_name} \n"
f"写真: {user_image} \n"
f"特徴量: {user_feature} \n"
f"性別: {user_gender} \n"
f"年齢: {user_age} \n"
f"分類: {user_category} \n"
f"興味: {user_interested} \n"
"を保存しました")
if key == ord('q'):
print("🖥️ SYSTEM: 撮影を終了します")
break
cam.release_camera() # カメラを解放
cv2.destroyAllWindows()
time.sleep(0.5)
pan_tilt(0,0)
time.sleep(0.5)
neopixels_off()
if __name__ == '__main__':
face_date_create()