11. 画像認識 (Image Recognition)
Recognition:?
The act of accepting that something is true or
important or that it exists
(出典: http://www.merriam-webster.com/)
?
?
物事の真偽や重要性、またはその存在を認める行動
?
Image Recognition:
画像や画像中にあるものが
一体何を意味しているかを理解する
第30回 MPS ミーティング資料 (2015/07/11) (c) Junya Kaneko
30. ランダムに生成された0から5までの整数
1000個の列のヒストグラムを描画
import matplotlib.pyplot as plt
import random
rnums = [random.randint(0, 4) for i in range(0, 1000)]
rand_hist = [0] * 5
for i in range(0, 1000):
rand_hist[rnums[i]] += 1
rand_hist = [i/1000 for i in rand_hist]
plt.bar(range(0, 5), rand_hist, 1, color="blue")
plt.show()
第30回 MPS ミーティング資料 (2015/07/11) (c) Junya Kaneko