-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathhuecircle.py
34 lines (24 loc) · 837 Bytes
/
huecircle.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
from pyghthouse import Pyghthouse
from pyghthouse.utils import from_hsv
from config import UNAME, TOKEN
import numpy as np
def cart2pol(x, y):
rho = np.sqrt(x**2 + y**2)
phi = (np.arctan2(y, x) / np.pi) / 2
return rho, phi
def circle_generator():
image = np.zeros((14, 28, 3))
while True:
for i in range(180):
for x in range(28):
for y in range(14):
rho, phi = cart2pol(x / 28 - 0.5, y / 14 - 0.5)
image[y, x, :] = from_hsv((phi + i / 180) % 1.0, 1-rho, i / 90 if i < 91 else 1 - (i - 90) / 90)
yield image
circle = circle_generator()
def callback():
return next(circle)
if __name__ == '__main__':
p = Pyghthouse(UNAME, TOKEN, image_callback=callback)
print("Starting... use CTRL+C to stop.")
p.start()