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
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
|
import numpy as np
cimport numpy as np
from libcpp.vector cimport vector
np.import_array()
dtype = np.float64
ctypedef np.double_t dtype_t
cdef extern from "<string>" namespace "std":
cdef cppclass string:
string()
string(char *)
char * c_str()
cdef extern from "../src/simpl/base.h" namespace "simpl":
cdef cppclass c_Peak "simpl::Peak":
c_Peak()
double amplitude
double frequency
double phase
cdef cppclass c_Frame "simpl::Frame":
c_Frame()
c_Frame(int frame_size)
# peaks
int num_peaks()
int max_peaks()
void max_peaks(int new_max_peaks)
void add_peak(c_Peak* peak)
c_Peak* peak(int peak_number)
void clear()
# partials
int num_partials()
int max_partials()
void max_partials(int new_max_partials)
c_Peak* partial(int partial_number)
void partial(int partial_number, c_Peak* peak)
# audio buffers
int size()
void size(int new_size)
void audio(double* new_audio)
double* audio()
void synth(double* new_synth)
double* synth()
void residual(double* new_residual)
double* residual()
void synth_residual(double* new_synth_residual)
double* synth_residual()
cdef cppclass c_PeakDetection "simpl::PeakDetection":
c_PeakDetection()
int sampling_rate()
void sampling_rate(int new_sampling_rate)
int frame_size()
void frame_size(int new_frame_size)
int static_frame_size()
void static_frame_size(int new_static_frame_size)
int next_frame_size()
int hop_size()
void hop_size(int new_hop_size)
int max_peaks()
void max_peaks(int new_max_peaks)
string window_type()
void window_type(string new_window_type)
int window_size()
void window_size(int new_window_size)
double min_peak_separation()
void min_peak_separation(double new_min_peak_separation)
int num_frames()
c_Frame* frame(int frame_number)
vector[c_Peak*] find_peaks_in_frame(c_Frame* frame)
vector[c_Frame*] find_peaks(int audio_size, double* audio)
cdef cppclass c_PartialTracking "simpl::PartialTracking":
c_PartialTracking()
void clear()
int sampling_rate()
void sampling_rate(int new_sampling_rate)
int max_partials()
void max_partials(int new_max_partials)
int min_partial_length()
void min_partial_length(int new_min_partial_length)
int max_gap()
void max_gap(int new_max_gap)
vector[c_Peak*] update_partials(c_Frame* frame)
vector[c_Frame*] find_partials(vector[c_Frame*] frames)
cdef cppclass c_Synthesis "simpl::Synthesis":
c_Synthesis()
int frame_size()
void frame_size(int new_frame_size)
int next_frame_size()
int hop_size()
void hop_size(int new_hop_size)
int sampling_rate()
void sampling_rate(int new_sampling_rate)
int max_partials()
void max_partials(int new_max_partials)
void synth_frame(c_Frame* frame)
vector[c_Frame*] synth(vector[c_Frame*] frames)
cdef cppclass c_Residual "simpl::Residual":
c_Synthesis()
int frame_size()
void frame_size(int new_frame_size)
int next_frame_size()
int hop_size()
void hop_size(int new_hop_size)
int sampling_rate()
void sampling_rate(int new_sampling_rate)
void residual_frame(int synth_size, double* synth,
int original_size, double* original,
int residual_size, double* residual)
void find_residual(int synth_size, double* synth,
int original_size, double* original,
int residual_size, double* residual)
void synth_frame(c_Frame* frame)
vector[c_Frame*] synth(vector[c_Frame*] frames)
cdef class Peak:
cdef c_Peak* thisptr
cdef int created
def __cinit__(self, create_new=True):
if create_new:
self.thisptr = new c_Peak()
self.created = True
else:
self.created = False
def __dealloc__(self):
if self.created:
del self.thisptr
cdef set_peak(self, c_Peak* p):
self.thisptr = p
property amplitude:
def __get__(self): return self.thisptr.amplitude
def __set__(self, double x): self.thisptr.amplitude = x
property frequency:
def __get__(self): return self.thisptr.frequency
def __set__(self, double x): self.thisptr.frequency = x
property phase:
def __get__(self): return self.thisptr.phase
def __set__(self, double x): self.thisptr.phase = x
cdef class Frame:
cdef c_Frame* thisptr
cdef int created
def __cinit__(self, size=None, create_new=True):
if create_new:
if size:
self.thisptr = new c_Frame(size)
else:
self.thisptr = new c_Frame()
self.created = True
else:
self.created = False
def __dealloc__(self):
if self.created:
del self.thisptr
cdef set_frame(self, c_Frame* f):
self.thisptr = f
# peaks
property num_peaks:
def __get__(self): return self.thisptr.num_peaks()
property max_peaks:
def __get__(self): return self.thisptr.max_peaks()
def __set__(self, int i): self.thisptr.max_peaks(i)
def add_peak(self, Peak p not None):
self.thisptr.add_peak(p.thisptr)
def add_peaks(self, peaks not None):
for p in peaks:
self.add_peak(p)
def peak(self, int i):
cdef c_Peak* c_p = self.thisptr.peak(i)
p = Peak(False)
p.set_peak(c_p)
return p
property peaks:
def __get__(self):
return [self.peak(i) for i in range(self.thisptr.num_peaks())]
def __set__(self, peaks):
self.add_peaks(peaks)
def clear(self):
self.thisptr.clear()
# partials
property num_partials:
def __get__(self): return self.thisptr.num_partials()
def __set__(self, int i): raise Exception("Invalid Operation")
property max_partials:
def __get__(self): return self.thisptr.max_partials()
def __set__(self, int i): self.thisptr.max_partials(i)
def partial(self, int i, Peak p=None):
cdef c_Peak* c_p
if not p:
c_p = self.thisptr.partial(i)
peak = Peak(False)
peak.set_peak(c_p)
return peak
else:
self.thisptr.partial(i, p.thisptr)
property partials:
def __get__(self):
return [self.partial(i) for i in range(self.thisptr.num_partials())]
def __set__(self, peaks):
raise Exception("NotImplemented")
# audio buffers
property size:
def __get__(self): return self.thisptr.size()
def __set__(self, int i): self.thisptr.size(i)
property audio:
def __get__(self):
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.size()
return np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, self.thisptr.audio())
def __set__(self, np.ndarray[dtype_t, ndim=1] a):
self.thisptr.audio(<double*> a.data)
property synth:
def __get__(self):
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.size()
return np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, self.thisptr.synth())
def __set__(self, np.ndarray[dtype_t, ndim=1] a):
self.thisptr.synth(<double*> a.data)
property residual:
def __get__(self):
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.size()
return np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, self.thisptr.residual())
def __set__(self, np.ndarray[dtype_t, ndim=1] a):
self.thisptr.residual(<double*> a.data)
property synth_residual:
def __get__(self):
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.size()
return np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, self.thisptr.synth_residual())
def __set__(self, np.ndarray[dtype_t, ndim=1] a):
self.thisptr.synth_residual(<double*> a.data)
cdef class PeakDetection:
cdef c_PeakDetection* thisptr
def __cinit__(self): self.thisptr = new c_PeakDetection()
def __dealloc__(self): del self.thisptr
property sampling_rate:
def __get__(self): return self.thisptr.sampling_rate()
def __set__(self, int i): self.thisptr.sampling_rate(i)
property frame_size:
def __get__(self): return self.thisptr.frame_size()
def __set__(self, int i): self.thisptr.frame_size(i)
property static_frame_size:
def __get__(self): return self.thisptr.static_frame_size()
def __set__(self, int i): self.thisptr.static_frame_size(i)
def next_frame_size(self):
return self.thisptr.next_frame_size()
property hop_size:
def __get__(self): return self.thisptr.hop_size()
def __set__(self, int i): self.thisptr.hop_size(i)
property max_peaks:
def __get__(self): return self.thisptr.max_peaks()
def __set__(self, int i): self.thisptr.max_peaks(i)
property window_type:
def __get__(self): return self.thisptr.window_type().c_str()
def __set__(self, char* s): self.thisptr.window_type(string(s))
property window_size:
def __get__(self): return self.thisptr.window_size()
def __set__(self, int i): self.thisptr.window_size(i)
property min_peak_separation:
def __get__(self): return self.thisptr.min_peak_separation()
def __set__(self, double d): self.thisptr.min_peak_separation(d)
def frame(self, int i):
cdef c_Frame* c_f = self.thisptr.frame(i)
f = Frame(None, False)
f.set_frame(c_f)
return f
property frames:
def __get__(self):
return [self.frame(i) for i in range(self.thisptr.num_frames())]
def __set__(self, f):
raise Exception("NotImplemented")
def find_peaks_in_frame(self, Frame frame not None):
peaks = []
cdef vector[c_Peak*] c_peaks = self.thisptr.find_peaks_in_frame(frame.thisptr)
for i in range(c_peaks.size()):
peak = Peak(False)
peak.set_peak(c_peaks[i])
peaks.append(peak)
return peaks
def find_peaks(self, np.ndarray[dtype_t, ndim=1] audio):
frames = []
cdef vector[c_Frame*] output_frames = self.thisptr.find_peaks(len(audio), <double*> audio.data)
for i in range(output_frames.size()):
f = Frame(output_frames[i].size(), False)
f.set_frame(output_frames[i])
frames.append(f)
return frames
cdef class PartialTracking:
cdef c_PartialTracking* thisptr
def __cinit__(self): self.thisptr = new c_PartialTracking()
def __dealloc__(self): del self.thisptr
def clear(self):
self.thisptr.clear()
property sampling_rate:
def __get__(self): return self.thisptr.sampling_rate()
def __set__(self, int i): self.thisptr.sampling_rate(i)
property max_partials:
def __get__(self): return self.thisptr.max_partials()
def __set__(self, int i): self.thisptr.max_partials(i)
property min_partial_length:
def __get__(self): return self.thisptr.min_partial_length()
def __set__(self, int i): self.thisptr.min_partial_length(i)
property max_gap:
def __get__(self): return self.thisptr.max_gap()
def __set__(self, int i): self.thisptr.max_gap(i)
def update_partials(self, Frame frame not None):
peaks = []
cdef vector[c_Peak*] c_peaks = self.thisptr.update_partials(frame.thisptr)
for i in range(c_peaks.size()):
peak = Peak(False)
peak.set_peak(c_peaks[i])
peaks.append(peak)
return peaks
def find_partials(self, frames):
partial_frames = []
cdef vector[c_Frame*] c_frames
for frame in frames:
c_frames.push_back((<Frame>frame).thisptr)
cdef vector[c_Frame*] output_frames = self.thisptr.find_partials(c_frames)
for i in range(output_frames.size()):
f = Frame(output_frames[i].size(), False)
f.set_frame(output_frames[i])
partial_frames.append(f)
return partial_frames
cdef class Synthesis:
cdef c_Synthesis* thisptr
def __cinit__(self): self.thisptr = new c_Synthesis()
def __dealloc__(self): del self.thisptr
property sampling_rate:
def __get__(self): return self.thisptr.sampling_rate()
def __set__(self, int i): self.thisptr.sampling_rate(i)
property frame_size:
def __get__(self): return self.thisptr.frame_size()
def __set__(self, int i): self.thisptr.frame_size(i)
property hop_size:
def __get__(self): return self.thisptr.hop_size()
def __set__(self, int i): self.thisptr.hop_size(i)
property max_partials:
def __get__(self): return self.thisptr.max_partials()
def __set__(self, int i): self.thisptr.max_partials(i)
def synth_frame(self, Frame frame not None):
self.thisptr.synth_frame(frame.thisptr)
return frame.audio
def synth(self, frames):
cdef vector[c_Frame*] c_frames
for frame in frames:
c_frames.push_back((<Frame>frame).thisptr)
cdef vector[c_Frame*] output_frames = self.thisptr.synth(c_frames)
cdef np.ndarray[dtype_t, ndim=1] output = np.zeros(
output_frames.size() * self.thisptr.hop_size()
)
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.hop_size()
for i in range(output_frames.size()):
frame_audio = np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, output_frames[i].synth())
output[i * self.thisptr.hop_size():(i + 1) * self.thisptr.hop_size()] = frame_audio
return output
cdef class Residual:
cdef c_Residual* thisptr
def __cinit__(self): self.thisptr = new c_Residual()
def __dealloc__(self): del self.thisptr
property sampling_rate:
def __get__(self): return self.thisptr.sampling_rate()
def __set__(self, int i): self.thisptr.sampling_rate(i)
property frame_size:
def __get__(self): return self.thisptr.frame_size()
def __set__(self, int i): self.thisptr.frame_size(i)
property hop_size:
def __get__(self): return self.thisptr.hop_size()
def __set__(self, int i): self.thisptr.hop_size(i)
def residual_frame(self, np.ndarray[dtype_t, ndim=1] synth,
np.ndarray[dtype_t, ndim=1] original):
cdef np.ndarray[dtype_t, ndim=1] residual = np.zeros(len(synth))
self.thisptr.residual_frame(len(synth), <double*> synth.data,
len(original), <double*> original.data,
len(residual), <double*> residual.data)
return residual
def find_residual(self, np.ndarray[dtype_t, ndim=1] synth,
np.ndarray[dtype_t, ndim=1] original):
cdef np.ndarray[dtype_t, ndim=1] residual = np.zeros(len(synth))
self.thisptr.find_residual(len(synth), <double*> synth.data,
len(original), <double*> original.data,
len(residual), <double*> residual.data)
return residual
def synth_frame(self, Frame frame not None):
self.thisptr.synth_frame(frame.thisptr)
return frame.audio
def synth(self, frames):
cdef vector[c_Frame*] c_frames
for frame in frames:
c_frames.push_back((<Frame>frame).thisptr)
cdef vector[c_Frame*] output_frames = self.thisptr.synth(c_frames)
cdef np.ndarray[dtype_t, ndim=1] output = np.zeros(
output_frames.size() * self.thisptr.hop_size()
)
cdef np.npy_intp shape[1]
shape[0] = <np.npy_intp> self.thisptr.hop_size()
for i in range(output_frames.size()):
frame_audio = np.PyArray_SimpleNewFromData(1, shape, np.NPY_DOUBLE, output_frames[i].synth())
output[i * self.thisptr.hop_size():(i + 1) * self.thisptr.hop_size()] = frame_audio
return output
|