-
Notifications
You must be signed in to change notification settings - Fork 0
/
bot_face_track_recognizer.py
187 lines (149 loc) · 6.72 KB
/
bot_face_track_recognizer.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
'''
bot_face_track_recognizer.py
カメラ映像を取得し、顔を検出して認識する顔追跡システムのボット用スクリプトです
カメラで顔を検出し、顔の特徴を抽出して辞書と比較し、顔認識を行います
また、顔の中心を捉えてカメラのパンとチルトを制御し、顔の追跡も行います
'''
import cv2
import numpy as np
import time
from pathlib import Path
from collections import Counter
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()
def face_recognize():
# モデルの読み込み
face_detector_weights = str(Path("dnn_models/yunet.onnx").resolve())
#face_detector_weights = str(Path("dnn_models/yunet_s_640_640.onnx").resolve()) # 顔検出用のweights
face_detector = cv2.FaceDetectorYN_create(face_detector_weights, "", (0, 0))
# 顔識別モデルを読み込む
face_recognizer_weights = str(Path("dnn_models/face_recognizer_fast.onnx").resolve()) # 顔認識用のweights
face_recognizer = cv2.FaceRecognizerSF_create(face_recognizer_weights, "")
COSINE_THRESHOLD = 0.363
#NORML2_THRESHOLD = 1.128
# 特徴を読み込み特徴量辞書をつくる
dictionary = []
files = Path("face_dataset").glob("*.npy")
for file in files:
feature = np.load(file)
user_id = Path(file).stem
dictionary.append((user_id, feature))
# 特徴を辞書と比較してマッチしたユーザーとスコアを返す関数
def match(recognizer, feature1, data_directory):
for element in data_directory:
user_id, feature2 = element
score = recognizer.match(feature1, feature2, cv2.FaceRecognizerSF_FR_COSINE)
if score > COSINE_THRESHOLD:
return True, (user_id, score)
return False, ("", 0.0)
recognized_ids =[]
# カメラのデフォルトのパン/チルト (度単位)。コードを開始するときに、おおよその顔の位置を指すように設定しました
# カメラの範囲は 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)
time_start = time.perf_counter()
time_end = 0
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:
# 顔を切り抜き特徴を抽出する
aligned_face = face_recognizer.alignCrop(frame, face)
feature = face_recognizer.feature(aligned_face)
# 辞書とマッチングする
result, user = match(face_recognizer, feature, dictionary)
# マッチングしたらボックスとテキストの色を変える
if result is True:
color = (0,255,0)
neopixels_all(0, 50, 0)
else:
color = (255,255,255)
neopixels_all(50, 50, 50)
# バウンディングボックス
x, y, w, h = list(map(int, face[:4]))
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)
# 認識の結果を描画する
id, score = user if result else ("unknown", 0.0)
text = "{0} ({1:.2f})".format(id, score)
position = (x, y - 10)
font = cv2.FONT_HERSHEY_SIMPLEX
scale = 0.6
thickness = 1
cv2.putText(frame_output, text, position, font, scale, color, thickness, cv2.LINE_AA)
# マッチングしたらIDを一度だけ追加する
if result:
recognized_ids.append(id)
#print(recognized_ids)
# 顔の中心を捉える
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
#print(cam_pan-90, cam_tilt-90)
# パン/チルト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
if frame is not None:
cv2.imshow("face detection", frame_output)
time_end = time.perf_counter() - time_start
if time_end > 5:
break
key = cv2.waitKey(1)
if key == ord('q'):
break
cam.release_camera() # カメラを解放
cv2.destroyAllWindows()
time.sleep(0.5)
pan_tilt(0,0)
time.sleep(0.5)
neopixels_off()
return Counter(recognized_ids).most_common()[0][0]
if __name__ == '__main__':
recognized_id = face_recognize()
print(recognized_id)