-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcolor2osc.py
388 lines (278 loc) · 13.4 KB
/
color2osc.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
from matplotlib import pyplot as plt, style
import matplotlib.animation as animation
import cv2
import numpy as np
import time
from datetime import datetime
# to send osc messages
import argparse
from pythonosc import udp_client
# for logging function
import sys, os
# matplotlib color scheam
plt.style.use('fivethirtyeight')
###########################################################################################################################
# debug
###########################################################################################################################
histogram = 0 # plots a live histogram of the colors in current frame
plot_color_prog = 0 # plot color percentage chages over time
show_org = 0 # shows a live image from orginal video
motion_dictection = 0 # not implanted
save_image = 0 # saves the recorded video to creat loops (not full implanted)
save_perc_graph = 0 # saves the finale version of the recorded histogram of the colors
show_imgs_for_colors = 1
###########################################################################################################################
# defs CV
###########################################################################################################################
def read_frame(scale_factor=1):
ret, frame2 = cap.read()
# rescale image for perfromance
scale = 1 / len(colors) / scale_factor
imgs = cv2.resize(frame2, (0, 0), None, scale, scale)
return imgs, frame2
def percent_color(img, color_min = np.array([0, 0, 128], np.uint8), color_max= np.array([250, 250, 255], np.uint8) ):
#RED_MIN = np.array([0, 0, 128], np.uint8)
#RED_MAX = np.array([250, 250, 255], np.uint8)
size = img.size
dstr = cv2.inRange(img, color_min, color_max)
no_color = cv2.countNonZero(dstr)
frac_color = np.divide((float(no_color)), (int(size)))
percent_color = np.multiply((float(frac_color)), 100)
#print('color: ' + str(percent_color) + '%')
return percent_color
def percent_color_singel(img,color = [145,80,40], threshold = 20, disp = "image" ):
boundaries = [([max(color[2] - threshold,0),max(color[1] - threshold,0),max(color[0] - threshold,0)],
[min(color[2] + threshold,255), min(color[1] + threshold,255), min(color[0] + threshold,255)])]
# in order BGR as opencv represents images as numpy arrays in reverse order
for (lower, upper) in boundaries:
lower = np.array(lower, dtype=np.uint8)
upper = np.array(upper, dtype=np.uint8)
mask = cv2.inRange(img, lower, upper)
output = cv2.bitwise_and(img, img, mask=mask)
ratio_brown = cv2.countNonZero(mask) / (img.size / 3)
perc = np.round(ratio_brown * 100, 2)
#print('the color: ' + str(color) + ' ,has a pixel percentage:', perc, '%.')
##cv2.imshow( disp, np.hstack([img, output]))
#cv2.imshow(disp, output)
# write image to file with time as name
if save_image == 1:
millis = int(round(time.time() * 1000))
cv2.imwrite("pictures2\\" + disp + str(millis) + ".png", output)
#cv2.waitKey(0)
return perc, output
###########################################################################################################################
# osc functions
###########################################################################################################################
def rescale(n, range1, range2):
delta1 = range1[1] - range1[0]
delta2 = range2[1] - range2[0]
return (delta2 * (n - range1[0]) / delta1) + range2[0]
# def for OSC messages
def send_freqs_to_synth_0(freqs):
client.send_message("/osm/a/cv", freqs)
def send_freqs_to_synth_1(freqs):
client.send_message("/osm/b/cv", freqs)
def send_freqs_to_synth_2(freqs):
client.send_message("/filter_2", freqs)
def send_freqs_to_synth_3(freqs):
client.send_message("/filter_3", freqs)
def send_freqs_to_synth_4(freqs):
client.send_message("/filter_4", freqs)
def send_freqs_to_synth_5(freqs):
client.send_message("/filter_5", freqs)
def send_freqs_to_synth_6(freqs):
client.send_message("/filter_6", freqs)
# def for playing OSC messages from inputs
def play_synth(argument):
# set up scale
fundamental = 40 # fundamental note of scale
a = 24 # change octave for player a
b = 0 # change octave for player b
send_freqs_to_synth_0(argument[0])
send_freqs_to_synth_1(argument[1])
# send OSC messages
for i , x in enumerate(argument):
x = rescale(float(x)/100,[0,1], [50,10000])
client.send_message("/filter_"+str(i), str(x))
###########################################################################################################################
# plot functions
###########################################################################################################################
def create_color_prog_plot(frames= 500):
print("creating figure for color change")
plt.ion()
fig_prog = plt.figure()
ax_prog = fig_prog.add_subplot(111)
fig_prog.canvas.set_window_title('colors/for the last ' + str(frames) + ' time frames')
lines_prog = []
for color ,threshold in colors:
color_scaled = [x/255 for x in color]
rgb_color = tuple(color_scaled)
lines_prog.append(ax_prog.plot([], [], color=rgb_color, label=str(color)))
plt.grid(color='k', linestyle='-', linewidth=0.1)
ax_prog.legend()
#ax_prog.relim()
#ax_prog.autoscale_view()
plt.xlim(0, frames)
plt.ylim(0, 100)
return lines_prog
def creat_histogram_plot():
color = ('b', 'g', 'r')
histr = None
plt.ion()
plt.xlim([0, 256])
plt.ylim([0,15000])
plt.grid(color='k', linestyle='-', linewidth=0.1)
plt.title('Histogram for color scale in frame')
###########################################################################################################################
# video source
###########################################################################################################################
# web cam
cap = cv2.VideoCapture(2)
# or read video
# path = os.path.join("..", "video", )
#path = "C:\\Users\\hasan\\Desktop\\Holyspace\\kasia\\videos\\blood_maps.mov"
#path = "C:\\Users\\hasan\\Desktop\\Holyspace\\kasia\\videos\\blood_maps_small.mp4"
#cap = cv2.VideoCapture(path)
###########################################################################################################################
# initale varaibles
###########################################################################################################################
# colors to select from
#colors = [([145, 80, 40], 50), ([50, 80, 255], 50), ([185, 130, 51], 50), ([50, 10, 39], 50), ([50, 80, 39], 50)]
#colors = [([255, 0, 0], 50), ([0, 0, 0], 50), ([135,4,0], 50), ([0, 255, 0], 50), ([200, 130, 180], 50),([255, 0, 255], 50),([185,124,109], 50)]
colors = [([150, 150, 150], 120), ([255, 255, 255], 150)]
color_perc_list = [] # list of all color percentages of all frames
###########################################################################################################################
# set up OSC
###########################################################################################################################
# check super collider for parser
# set up log file nameq
#sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'lib'))
#f = open('output.txt', 'a+')
#f.write('Timestamp: {:%Y-%m-%d %H:%M:%S}'.format(datetime.datetime.now()) + "\n")
#f.close()
IP_adress = "192.168.0.1"
port = 8000
print("setting put OSC client")
print("connecting to IP adress: " + IP_adress + " on port: " + str(port))
parser = argparse.ArgumentParser()
parser.add_argument("--ip", default=IP_adress,
help="The ip of the OSC server")
parser.add_argument("--port", type=int, default=port,
help="The port the OSC server is listening on")
args = parser.parse_args()
client = udp_client.SimpleUDPClient(args.ip, args.port)
###########################################################################################################################
# start video capture loop
###########################################################################################################################
# start fps timer
t = time.time()
frame_num = 0
# capture first frame
ret, frame1 = cap.read()
prvs = cv2.cvtColor(frame1,cv2.COLOR_BGR2GRAY)
hsv = np.zeros_like(frame1)
hsv[...,1] = 255
# start catpure loop
while(1):
###########################################################################################################################
# read frame
###########################################################################################################################
img, frame2 = read_frame()
####################################################################################################
# show orginal frame
####################################################################################################
if show_org == 1:
cv2.imshow('org', frame2)
###########################################################################################################################
# motion dictection
###########################################################################################################################
if motion_dictection == 1:
next = cv2.cvtColor(frame2,cv2.COLOR_BGR2GRAY)
flow = cv2.calcOpticalFlowFarneback(prvs,next, None, 0.5, 3, 15, 3, 5, 1.2, 0)
mag, ang = cv2.cartToPolar(flow[...,0], flow[...,1])
hsv[...,0] = 0#ang*180/np.pi/2
hsv[...,2] = cv2.normalize(mag,None,0,255,cv2.NORM_MINMAX)
bgr = cv2.cvtColor(hsv,cv2.COLOR_HSV2BGR)
cv2.imshow('frame2',bgr)
####################################################################################################
# calatulate color percentage
####################################################################################################
color_prec_frame = [] # list of color percentages for current frame
imgs = img
# start the image array with orginal frame
for color, threshold in colors:
color_pers_i, img = percent_color_singel(img, color=color, threshold=threshold, disp= str(color))
color_prec_frame.append(color_pers_i)
imgs = np.hstack((imgs,img))
# add color from frame the last frames perc list
color_perc_list.append((color_prec_frame))
if show_imgs_for_colors == 1:
images_per_row = 2
#cv2.imshow( "ALL_1", np.hstack(imgs))
cv2.imshow( "ALL_1", imgs)
# show images
# height = sum(image.shape[0] for image in imgs)
# width = max(image.shape[1] for image in imgs)
# output = np.zeros((height, width, 3))
####################################################################################################
# plot color percetage progration
####################################################################################################
if plot_color_prog == 1:
# create plot
if frame_num == 0:
frames_of_plot = 500
lines_prog = create_color_prog_plot(frames_of_plot)
color_perc_list_crop = np.array(color_perc_list[-frames_of_plot:])
for i in range(0, len(colors)):
A = color_perc_list_crop[:,i]
x = lines_prog[i][0]
x.set_ydata(A)
x.set_xdata(range(len(A)))
plt.draw()
plt.pause(0.01)
# plt.gcf().clear()
if save_perc_graph == 1:
plt.savefig('percentages.png')
####################################################################################################
# plot histogram
####################################################################################################
if histogram == 1:
if frame_num == 0:
creat_histogram_plot()
for i, col in enumerate(color):
histr = cv2.calcHist([frame2], [i], None, [256], [0, 256])
hist = cv2.normalize(hist)
plt.plot(histr, color=col)
#ani = animation.FuncAnimation(fig, animate, interval=1000)
plt.pause(0.01)
plt.gcf().clear()
####################################################################################################
# send osc message
####################################################################################################
# send osc messages
play_synth(color_prec_frame)
####################################################################################################
# calc frame rate and rewrite iteration and keyboard input
####################################################################################################
# calc frame rate
if frame_num%10 == 0:
elapsed = time.time() - t
print("fps: " + str(10/elapsed))
t = time.time()
# keyboard input
k = cv2.waitKey(30) & 0xff # keyboard messages
if k == 27:
break # break loop
elif k == ord('q'):
break # break loop
elif k == ord('s'):
cv2.imwrite('opticalfb.png',frame2) # write frame
cv2.imwrite('opticalhsv.png',bgr)
# next iteration
prvs = next
frame_num += 1
####################################################################################################
# end programm
####################################################################################################
cap.release()
cv2.destroyAllWindows()