-
Notifications
You must be signed in to change notification settings - Fork 5
/
janken-robothand-tf.py
491 lines (423 loc) · 19.2 KB
/
janken-robothand-tf.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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
# -*- coding: utf-8 -*-
import picamera
import picamera.array
import cv2
import numpy as np
from scipy import stats
from sklearn.neural_network import MLPClassifier
from sklearn.linear_model import Perceptron
import keras
from keras import backend as K
import sys
from PIL import Image, ImageTk
import threading
import time
import subprocess
try:
import Tkinter as tk
except ImportError: # for Python 3
import tkinter as tk
import tensorflow.compat.v1 as tf
from time import sleep
import smbus
import math
import sys
session = tf.Session()
graph = tf.get_default_graph()
version = cv2.__version__.split(".")
CVversion = int(version[0])
def resetPCA9685():
bus.write_byte_data(address_pca9685, 0x00, 0x00)
def setPCA9685Freq(freq):
freq = 0.9*freq # Arduinoのライブラリより
prescaleval = 25000000.0 # 25MHz
prescaleval /= 4096.0 # 12-bit
prescaleval /= float(freq)
prescaleval -= 1.0
prescale = int(math.floor(prescaleval + 0.5))
oldmode = bus.read_byte_data(address_pca9685, 0x00)
newmode = (oldmode & 0x7F) | 0x10 # スリープモード
bus.write_byte_data(address_pca9685, 0x00, newmode) # スリープモードへ
bus.write_byte_data(address_pca9685, 0xFE, prescale) # プリスケーラーをセット
bus.write_byte_data(address_pca9685, 0x00, oldmode)
sleep(0.005)
bus.write_byte_data(address_pca9685, 0x00, oldmode | 0xa1)
def setPCA9685Duty(channel, on, off):
channelpos = 0x6 + 4*channel
try:
bus.write_i2c_block_data(address_pca9685, channelpos, [on&0xFF, on>>8, off&0xFF, off>>8] )
except IOError:
pass
bus = smbus.SMBus(1)
address_pca9685 = 0x40
resetPCA9685()
setPCA9685Freq(50)
def guchokipa_servo(i):
if i==0: #グーのとき
# 順に、親指~小指に対応するサーボの値。
# 2番目の引数は常に0。範囲は143~410程度で276がゼロ点。
# 以下同様。
setPCA9685Duty(0, 0, 350)
sleep(0.01)
setPCA9685Duty(1, 0, 220)
sleep(0.01)
setPCA9685Duty(2, 0, 240)
sleep(0.01)
setPCA9685Duty(3, 0, 220)
sleep(0.01)
setPCA9685Duty(4, 0, 350)
elif i==1: #チョキのとき
setPCA9685Duty(0, 0, 350)
sleep(0.01)
setPCA9685Duty(1, 0, 380)
sleep(0.01)
setPCA9685Duty(2, 0, 360)
sleep(0.01)
setPCA9685Duty(3, 0, 220)
sleep(0.01)
setPCA9685Duty(4, 0, 350)
elif i==2: #パーのとき
setPCA9685Duty(0, 0, 190)
sleep(0.01)
setPCA9685Duty(1, 0, 380)
sleep(0.01)
setPCA9685Duty(2, 0, 360)
sleep(0.01)
setPCA9685Duty(3, 0, 360)
sleep(0.01)
setPCA9685Duty(4, 0, 210)
# 手の認識用パラメータ(HチャンネルとSチャンネルとを二値化するための条件)
hmin = 0
hmax = 30 # 15-40程度にセット
smin = 50
# 手の二値化画像のサイズ 縦(row)と横(col)
img_rows, img_cols = 12, 16
# 学習に用いる縮小画像のサイズ
sw = img_cols
sh = img_rows
# じゃんけんの手のベクトル形式を格納した配列。入力データとして用いる
# グー [1, 0, 0], チョキ [0, 1, 0], パー [0, 0, 1]
janken_array = np.array([[1, 0, 0], [0, 1, 0], [0, 0, 1]])
# グー, チョキ, パーの名称を格納した配列
janken_class = ['グー', 'チョキ', 'パー']
# 過去何回分の手を覚えているか
n = 3
# じゃんけんの過去の手の初期化
# 人間の手とコンピュータの手をそれぞれn回分。さらに1回分につき3個の数字が必要
Jprev = np.zeros(3*n*2)
# 過去の手(ベクトル形式)をランダムに初期化
for i in range(2*n):
j = np.random.randint(0, 3)
Jprev[3*i:3*i+3] = janken_array[j]
# 現在の手(0~2の整数)をランダムに初期化
j = np.random.randint(0, 3)
# 過去の手(入力データ)をscikit_learn用の配列に変換
Jprev_set = np.array([Jprev])
# 現在の手(ターゲット)をscikit_learn用の配列に変換
jnow_set = np.array([j])
# 三層ニューラルネットワークを定義
#clf_janken = MLPClassifier(hidden_layer_sizes=(200, ), random_state=None)
# 単純パーセプトロンを定義
clf_janken = Perceptron(random_state=None)
# ランダムな入力でオンライン学習を1回行う。
# 初回の学習では、あり得るターゲット(0, 1, 2)を分類器に知らせる必要がある
clf_janken.partial_fit(Jprev_set, jnow_set, classes=[0, 1, 2])
# 勝敗の回数を初期化
win = 0
draw = 0
lose = 0
# 状態保存用のフラグ
appliStop = False
jankenLoop = False
recognizedHand = 0
# 学習済ファイルの確認
if len(sys.argv)==2:
savefile = sys.argv[1]
try:
with session.as_default():
model = keras.models.load_model(savefile)
except IOError:
print('学習済ファイル{0}を開けません'.format(savefile))
sys.exit()
else:
print('使用法: python ml-10-09-janken-deep.py 学習済ファイル.h5')
sys.exit()
# X:画像から計算したベクトル、y:教師データ
X = np.empty((0,sw*sh), float)
y = np.array([], int)
def getImageVector(img):
# 白い領域(ピクセル値が0でない領域)の座標を集める
nonzero = cv2.findNonZero(img)
# その領域を囲う四角形の座標と大きさを取得
xx, yy, ww, hh = cv2.boundingRect(nonzero)
# 白い領域を含む最小の矩形領域を取得
img_nonzero = img[yy:yy+hh, xx:xx+ww]
# 白い領域を(sw, sh)サイズに縮小するための準備
img_small = np.zeros((sh, sw), dtype=np.uint8)
# 画像のアスペクト比を保ったまま、白い領域を縮小してimg_smallにコピーする
if 4*hh < ww*3 and hh > 0:
htmp = int(sw*hh/ww)
if htmp>0:
img_small_tmp = cv2.resize(img_nonzero, (sw, htmp), interpolation=cv2.INTER_LINEAR)
img_small[int((sh-htmp)/2):int((sh-htmp)/2)+htmp, 0:sw] = img_small_tmp
elif 4*hh >= ww*3 and ww > 0:
wtmp = int(sh*ww/hh)
if wtmp>0:
img_small_tmp = cv2.resize(img_nonzero, (wtmp, sh), interpolation=cv2.INTER_LINEAR)
img_small[0:sh, int((sw-wtmp)/2):int((sw-wtmp)/2)+wtmp] = img_small_tmp
# 0...1の範囲にスケーリングしてからリターンする
return np.array([img_small.ravel()/255.])
# 手の認識をし続ける関数
def imageProcessing():
with session.as_default():
with graph.as_default():
with picamera.PiCamera() as camera:
with picamera.array.PiRGBArray(camera) as stream:
# カメラの解像度を320x240にセット
camera.resolution = (320, 240)
# カメラのフレームレートを15fpsにセット
camera.framerate = 15
# ホワイトバランスをfluorescent(蛍光灯)モードにセット
camera.awb_mode = 'fluorescent'
while True:
# stream.arrayにBGRの順で映像データを格納
camera.capture(stream, 'bgr', use_video_port=True)
# 映像データをHSV形式に変換
hsv = cv2.cvtColor(stream.array, cv2.COLOR_BGR2HSV)
# HSV形式からHチャンネルとSチャンネルの画像を得る
hsv_channels = cv2.split(hsv)
h_channel = hsv_channels[0]
s_channel = hsv_channels[1]
# Hチャンネルを平滑化
h_binary = cv2.GaussianBlur(h_channel, (5,5), 0)
# Hチャンネルの二値化画像を作成
# hmin~hmaxの範囲を255(白)に、それ以外を0(黒)に
ret,h_binary = cv2.threshold(h_binary, hmax, 255, cv2.THRESH_TOZERO_INV)
ret,h_binary = cv2.threshold(h_binary, hmin, 255, cv2.THRESH_BINARY)
# smin~255の範囲を255(白)に、それ以外を0に(黒)に
ret,s_binary = cv2.threshold(s_channel, smin, 255, cv2.THRESH_BINARY)
# HチャンネルとSチャンネルの二値化画像のANDをとる
# HチャンネルとSチャンネルの両方で255(白)の領域のみ白となる
hs_and = h_binary & s_binary
# 以下、最も広い白領域のみを残すための計算
# まず、白領域の塊(クラスター)にラベルを振る
if CVversion == 2:
img_dist, img_label = cv2.distanceTransformWithLabels(255-hs_and, cv2.cv.CV_DIST_L2, 5)
else:
img_dist, img_label = cv2.distanceTransformWithLabels(255-hs_and, cv2.DIST_L2, 5)
img_label = np.uint8(img_label) & hs_and
# ラベル0は黒領域なので除外
img_label_not_zero = img_label[img_label != 0]
# 最も多く現れたラベルが最も広い白領域のラベル
if len(img_label_not_zero) != 0:
try:
m = stats.mode(img_label_not_zero, keepdims=False)[0]
except TypeError:
m = stats.mode(img_label_not_zero)[0]
else:
m = 0
# 最大の白領域のみを残す
hand = np.uint8(img_label == m)*255
# 最大の白領域からscikit-learnに入力するためのベクトルを取得
hand_vector = getImageVector(hand)
# 学習済のニューラルネットワークから結果を取得
X = np.array(hand_vector)
if K.image_data_format() == 'channels_first':
X = X.reshape(X.shape[0], 1, img_rows, img_cols)
input_shape = (1, img_rows, img_cols)
else:
X = X.reshape(X.shape[0], img_rows, img_cols, 1)
input_shape = (img_rows, img_cols, 1)
result = model.predict_classes(X, verbose=0)
# 分類結果をrecognizedHandに格納
global recognizedHand
recognizedHand = result[0]
# 手と判定されている領域を表示
cv2.imshow('hand', hand)
# waitを入れる
key = cv2.waitKey(1)
if appliStop == True:
break
# streamをリセット
stream.seek(0)
stream.truncate()
cv2.destroyAllWindows()
app.jankenStop()
app.quit()
def moveHand():
global Jprev
global Jprev_set
# 過去のじゃんけんの手(ベクトル形式)をscikit_learn形式に
Jprev_set = np.array([Jprev])
# コンピュータが、過去の手から人間の現在の手を予測
jpredict = clf_janken.predict(Jprev_set)
# 予測を元にコンピュータが決めた手
# 予測がグーならパー、予測がチョキならグー、予測がパーならチョキ
comp_choice = (jpredict[0] + 2)%3
# "ぽん!"のタイミングでサーボが動くようタイミング調整
sleep(2)
# サーボを動かす
guchokipa_servo(comp_choice)
# サーボの動きはじめと手の描画のタイミング調整
sleep(0.2)
# 人間の手を画像処理の結果から決定
j = recognizedHand
# 現在のじゃんけんの手(0~2の整数)をscikit_learn形式に
jnow_set = np.array([j])
# 人間の手
your_choice = j
if comp_choice == 0:
# コンピュータのグー画像表示
app.comp_canvas.create_image((app.w/2,app.h/2), image=app.comp_gu_img, state='normal')
app.comp_canvas.image = app.comp_gu_img
elif comp_choice == 1:
# コンピュータのチョキ画像表示
app.comp_canvas.create_image((app.w/2,app.h/2), image=app.comp_choki_img, state='normal')
app.comp_canvas.image = app.comp_choki_img
else:
# コンピュータのパー画像表示
app.comp_canvas.create_image((app.w/2,app.h/2), image=app.comp_pa_img, state='normal')
app.comp_canvas.image = app.comp_pa_img
if your_choice == 0:
# 人間のグー画像表示
app.human_canvas.create_image((app.w/2,app.h/2), image=app.human_gu_img, state='normal')
app.human_canvas.image = app.human_gu_img
elif your_choice == 1:
# 人間のチョキ画像表示
app.human_canvas.create_image((app.w/2,app.h/2), image=app.human_choki_img, state='normal')
app.human_canvas.image = app.human_choki_img
else:
# 人間のパー画像表示
app.human_canvas.create_image((app.w/2,app.h/2), image=app.human_pa_img, state='normal')
app.human_canvas.image = app.human_pa_img
# 勝敗結果を更新
global draw, lose, win
if your_choice == comp_choice:
draw += 1
elif your_choice == (comp_choice+1)%3:
lose += 1
else:
win += 1
# 勝敗結果を表示
result_text = 'あなたの勝ち: {0}, 負け: {1}, あいこ: {2} '.format(win, lose, draw)
app.result_canvas.delete('all')
app.result_canvas.create_text(200, 15, text=result_text)
# 過去の手(入力データ)と現在の手(ターゲット)とでオンライン学習
clf_janken.partial_fit(Jprev_set, jnow_set)
# 過去の手の末尾に現在のコンピュータの手を追加
Jprev = np.append(Jprev[3:], janken_array[comp_choice])
# 過去の手の末尾に現在の人間の手を追加
Jprev = np.append(Jprev[3:], janken_array[your_choice])
class Application(tk.Frame):
# 初期化用関数
def __init__(self, master=None):
tk.Frame.__init__(self, master)
self.w = 200
self.h = 200
self.pack()
self.create_widgets()
root.protocol('WM_DELETE_WINDOW', self.close_window)
self.recogthread = threading.Thread(target=imageProcessing)
self.recogthread.start()
# アプリ終了時に呼ばれる関数
def close_window(self):
global jankenLoop
global appliStop
jankenLoop = False
appliStop = True
# GUI部品の初期化
def create_widgets(self):
w = self.w
h = self.h
# コンピュータの手を表示する領域を初期化
self.comp_canvas = tk.Canvas(self, width=w, height=h, bg='white')
self.comp_blank_img = tk.PhotoImage(width=w, height=h)
self.comp_canvas.create_image((w/2,h/2), image=self.comp_blank_img, state='normal')
self.comp_canvas.image = self.comp_blank_img
self.comp_canvas.grid(row=0, column=0)
# コンピュータの手の画像の読み込み
self.comp_gu_img = ImageTk.PhotoImage(image=Image.open('ml-images/comp_gu.png'))
self.comp_choki_img = ImageTk.PhotoImage(image=Image.open('ml-images/comp_choki.png'))
self.comp_pa_img = ImageTk.PhotoImage(image=Image.open('ml-images/comp_pa.png'))
# 人間の手を表示する領域を初期化
self.human_canvas = tk.Canvas(self, width=w, height=h, bg='white')
self.human_blank_img = tk.PhotoImage(width=w, height=h)
self.human_canvas.create_image((w/2,h/2), image=self.human_blank_img, state='normal')
self.human_canvas.image = self.human_blank_img
self.human_canvas.grid(row=0, column=1)
# 人間の手の画像の読み込み
self.human_gu_img = ImageTk.PhotoImage(image=Image.open('ml-images/human_gu.png'))
self.human_choki_img = ImageTk.PhotoImage(image=Image.open('ml-images/human_choki.png'))
self.human_pa_img = ImageTk.PhotoImage(image=Image.open('ml-images/human_pa.png'))
# メッセージ表示領域の初期化
self.message_canvas = tk.Canvas(self, width=2*w, height=30, bg='white')
self.message_canvas.grid(row=1, column=0, columnspan=2)
# 結果表示領域の初期化
self.result_canvas = tk.Canvas(self, width=2*w, height=30, bg='white')
self.result_canvas.grid(row=2, column=0, columnspan=2)
# じゃんけん開始ボタンの初期化
self.janken_btn = tk.Button(self, text='じゃんけん開始', command=self.janken_start, relief='raised')
self.janken_btn.grid(row=3, column=0)
# クリアボタンの初期化
self.reset_btn = tk.Button(self, text='集計のクリア', command=self.clear)
self.reset_btn.grid(row=3, column=1)
# クリアボタンが押されたときに呼ばれる関数
def clear(self):
global draw, lose, win
draw = 0
lose = 0
win = 0
self.message_canvas.delete('all')
result_text = 'あなたの勝ち: {0:d}, 負け: {1:d}, あいこ: {2:d} '.format(win, lose, draw)
self.result_canvas.delete('all')
self.result_canvas.create_text(200, 15, text=result_text)
# じゃんけんが動作中かチェックするための関数
def jankenAlive(self):
try:
self.jankenthread.is_alive()
except AttributeError:
return False
# じゃんけんを停止するための関数
def jankenStop(self):
try:
self.jankenthread.join()
except AttributeError:
pass
# じゃんけん開始ボタンが押されたときに呼ばれる関数
def janken_start(self):
global jankenLoop
if jankenLoop == False:
jankenLoop = True
if not self.jankenAlive():
self.jankenthread = threading.Thread(target=self.janken_loop)
self.jankenthread.start()
self.janken_btn.config(relief='sunken')
self.reset_btn.config(state='disabled')
else:
jankenLoop = False
self.janken_btn.config(relief='raised')
self.reset_btn.config(state='normal')
# じゃんけんのループ
def janken_loop(self):
w = self.w
h = self.h
global jankenLoop
while jankenLoop == True:
time.sleep(1)
t = threading.Thread(target=moveHand)
t.start()
# メッセージ領域に「じゃんけん」と表示
message_text = 'じゃんけん'
self.message_canvas.delete('all')
self.message_canvas.create_text(200, 15, text=message_text)
# 「じゃんけんぽん」という音声を再生
args = ['mpg321', '-q', 'ml-sound/jankenpon.mp3']
process = subprocess.Popen(args).wait()
# メッセージ領域に「ぽん!」と表示
message_text = 'ぽん!'
self.message_canvas.delete('all')
self.message_canvas.create_text(200, 15, text=message_text)
root = tk.Tk()
app = Application(master=root)
app.master.title('ディープじゃんけん')
app.mainloop()