-
Notifications
You must be signed in to change notification settings - Fork 1
/
__main__.py
93 lines (76 loc) · 2.45 KB
/
__main__.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
"""2024-09-23
Selfie 03
Esferas + selfie, what could go wrong
png
Sketch,py5,CreativeCoding
"""
import cv2
import numpy as np
import py5
from utils import helpers
sketch = helpers.info_for_sketch(__file__, __doc__)
MARGEM = 100
LINHAS = 3
COLUNAS = 3
ALTURA = (helpers.ALTURA - 2 * MARGEM) // LINHAS
LARGURA = (helpers.LARGURA - 2 * MARGEM) // COLUNAS
IMAGE = None
GRADE = []
movie = cv2.VideoCapture(0)
def setup():
py5.size(helpers.LARGURA, helpers.ALTURA, py5.P3D)
py5.color_mode(py5.HSB, 360, 100, 100)
py5.sphere_detail(50)
x0 = MARGEM + (LARGURA // 2)
xf = (py5.width - MARGEM) + (LARGURA // 2)
xa = np.linspace(x0, xf, num=COLUNAS, endpoint=False)
y0 = MARGEM + (ALTURA // 2)
yf = (py5.height - MARGEM) + (ALTURA // 2)
ya = np.linspace(y0, yf, num=LINHAS, endpoint=False)
for x in xa:
for y in ya:
cor = py5.color(160, 0, 100)
forma = py5.create_shape(py5.SPHERE, LARGURA // 2.5)
forma.set_fill(cor)
forma.set_stroke(False)
forma.set_shininess(1.0)
GRADE.append((forma, x, y))
def draw():
global IMAGE
count = py5.frame_count
py5.rect_mode(py5.CENTER)
py5.background(0)
py5.lights()
py5.directional_light(10, 80, 100, py5.sin(count) * 200, py5.cos(count) * 200, -400)
for idx, (forma, x, y) in enumerate(GRADE):
with py5.push_matrix():
py5.translate(x, y, 0)
_, frame = movie.read()
angulo_x = idx * 2 * count
angulo_y = idx * 2 * count
angulo_z = idx * 2 * count
frame = cv2.cvtColor(frame, cv2.COLOR_BGR2RGBA)
IMAGE = py5.create_image_from_numpy(frame, "RGBA", dst=IMAGE)
forma.set_texture(IMAGE)
forma.rotate_x(py5.radians(angulo_x))
forma.rotate_y(py5.radians(angulo_y))
forma.rotate_x(py5.radians(angulo_z))
py5.shape(forma)
py5.translate(0, 0, -200)
w = LARGURA
h = ALTURA
fundo = py5.create_shape(py5.RECT, 0, 0, w, h)
h = abs((2 * py5.sin(idx * 40 * count)) * 180)
fundo.set_fill(py5.color(h, 80, 80))
py5.shape(fundo)
helpers.write_legend(sketch=sketch)
def key_pressed():
key = py5.key
if key == " ":
save_and_close()
def save_and_close():
py5.no_loop()
helpers.save_sketch_image(sketch)
py5.exit_sketch()
if __name__ == "__main__":
py5.run_sketch()