-
Notifications
You must be signed in to change notification settings - Fork 53
/
Copy pathday_and_night.py
51 lines (44 loc) · 1.37 KB
/
day_and_night.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
import numpy as np
import time
from lib import fft_convolve2d
import matplotlib.pyplot as plt
plt.ion()
def day_and_night(state, k=None):
"""
'Day & night' automata state transition
http://www.conwaylife.com/wiki/Day_%26_Night
"""
# set up kernel if not given
if k == None:
m, n = state.shape
k = np.zeros((m, n))
k[m/2-1 : m/2+2, n/2-1 : n/2+2] = np.array([[1,1,1],[1,0,1],[1,1,1]])
# computes sums around each pixel
b = fft_convolve2d(state,k).round()
c = np.zeros(b.shape)
c[np.where((b == 3) & (state == 1))] = 1
c[np.where((b == 6) & (state == 1))] = 1
c[np.where((b == 7) & (state == 1))] = 1
c[np.where((b == 8) & (state == 1))] = 1
c[np.where((b == 3) & (state == 0))] = 1
c[np.where((b == 4) & (state == 0))] = 1
c[np.where((b == 6) & (state == 0))] = 1
c[np.where((b == 7) & (state == 0))] = 1
c[np.where((b == 8) & (state == 0))] = 1
# return new state
return c
if __name__ == "__main__":
# set up board
m,n = 100,100
A = np.zeros((m,n))
A = 0.63*np.random.random(m*n).reshape((m, n))
A = A.round()
# plot each frame
plt.figure()
img_plot = plt.imshow(A, interpolation="nearest", cmap = plt.cm.gray)
plt.show(block=False)
while True:
A = day_and_night(A)
img_plot.set_data(A)
plt.draw()
time.sleep(0.01)