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
|
#include "partial_tracking.h"
using namespace std;
using namespace simpl;
// ---------------------------------------------------------------------------
// PartialTracking
// ---------------------------------------------------------------------------
PartialTracking::PartialTracking() {
_sampling_rate = 44100;
_max_partials = 100;
_min_partial_length = 0;
_max_gap = 2;
}
PartialTracking::~PartialTracking() {
clear();
}
void PartialTracking::clear() {
_frames.clear();
}
int PartialTracking::sampling_rate() {
return _sampling_rate;
}
void PartialTracking::sampling_rate(int new_sampling_rate) {
_sampling_rate = new_sampling_rate;
}
int PartialTracking::max_partials() {
return _max_partials;
}
void PartialTracking::max_partials(int new_max_partials) {
_max_partials = new_max_partials;
}
int PartialTracking::min_partial_length() {
return _min_partial_length;
}
void PartialTracking::min_partial_length(int new_min_partial_length) {
_min_partial_length = new_min_partial_length;
}
int PartialTracking::max_gap() {
return _max_gap;
}
void PartialTracking::max_gap(int new_max_gap) {
_max_gap = new_max_gap;
}
// Streamable (real-time) partial-tracking.
Peaks PartialTracking::update_partials(Frame* frame) {
Peaks peaks;
for(int i = 0; i < peaks.size(); i++) {
frame->add_partial(peaks[i]);
}
return peaks;
}
// Find partials from the sinusoidal peaks in a list of Frames.
Frames PartialTracking::find_partials(Frames frames) {
for(int i = 0; i < frames.size(); i++) {
if(frames[i]->max_partials() != _max_partials) {
frames[i]->max_partials(_max_partials);
}
update_partials(frames[i]);
}
_frames = frames;
return _frames;
}
// ---------------------------------------------------------------------------
// SMSPartialTracking
// ---------------------------------------------------------------------------
SMSPartialTracking::SMSPartialTracking() {
sms_init();
sms_initAnalParams(&_analysis_params);
_analysis_params.iSamplingRate = _sampling_rate;
_analysis_params.fHighestFreq = 20000;
_analysis_params.iMaxDelayFrames = 4;
_analysis_params.analDelay = 0;
_analysis_params.minGoodFrames = 1;
_analysis_params.iCleanTracks = 0;
_analysis_params.iFormat = SMS_FORMAT_HP;
_analysis_params.nTracks = _max_partials;
_analysis_params.maxPeaks = _max_partials;
_analysis_params.nGuides = _max_partials;
_analysis_params.preEmphasis = 0;
sms_initAnalysis(&_analysis_params);
sms_fillHeader(&_header, &_analysis_params);
sms_allocFrameH(&_header, &_data);
_peak_amplitude = NULL;
_peak_frequency = NULL;;
_peak_phase = NULL;
init_peaks();
}
SMSPartialTracking::~SMSPartialTracking() {
sms_freeAnalysis(&_analysis_params);
sms_freeFrame(&_data);
sms_free();
delete [] _peak_amplitude;
delete [] _peak_frequency;
delete [] _peak_phase;
_peak_amplitude = NULL;
_peak_frequency = NULL;;
_peak_phase = NULL;
}
void SMSPartialTracking::init_peaks() {
if(_peak_amplitude) {
delete [] _peak_amplitude;
}
if(_peak_frequency) {
delete [] _peak_frequency;
}
if(_peak_phase) {
delete [] _peak_phase;
}
_peak_amplitude = new sample[_max_partials];
_peak_frequency = new sample[_max_partials];
_peak_phase = new sample[_max_partials];
memset(_peak_amplitude, 0.0, sizeof(sample) * _max_partials);
memset(_peak_frequency, 0.0, sizeof(sample) * _max_partials);
memset(_peak_phase, 0.0, sizeof(sample) * _max_partials);
}
void SMSPartialTracking::max_partials(int new_max_partials) {
_max_partials = new_max_partials;
sms_freeAnalysis(&_analysis_params);
sms_freeFrame(&_data);
_analysis_params.maxPeaks = _max_partials;
_analysis_params.nTracks = _max_partials;
_analysis_params.nGuides = _max_partials;
sms_initAnalysis(&_analysis_params);
sms_fillHeader(&_header, &_analysis_params);
sms_allocFrameH(&_header, &_data);
init_peaks();
}
Peaks SMSPartialTracking::update_partials(Frame* frame) {
int num_peaks = _max_partials;
if(num_peaks > frame->num_peaks()) {
num_peaks = frame->num_peaks();
}
// set peaks in SMSAnalysisParams object
for(int i = 0; i < num_peaks; i++) {
_peak_amplitude[i] = frame->peak(i)->amplitude;
_peak_frequency[i] = frame->peak(i)->frequency;
_peak_phase[i] = frame->peak(i)->phase;
}
sms_setPeaks(&_analysis_params,
_max_partials, _peak_amplitude,
_max_partials, _peak_frequency,
_max_partials, _peak_phase);
// SMS partial tracking
sms_findPartials(&_data, &_analysis_params);
// get partials from SMSData object
Peaks peaks;
for(int i = 0; i < _data.nTracks; i++) {
Peak* p = new Peak();
p->amplitude = _data.pFSinAmp[i];
p->frequency = _data.pFSinFreq[i];
p->phase = _data.pFSinPha[i];
peaks.push_back(p);
frame->add_partial(p);
}
return peaks;
}
// ---------------------------------------------------------------------------
// SndObjPartialTracking
// ---------------------------------------------------------------------------
SndObjPartialTracking::SndObjPartialTracking() {
_threshold = 0.003;
_num_bins = 1025;
_input = NULL;
_analysis = NULL;
_peak_amplitude = NULL;
_peak_frequency = NULL;;
_peak_phase = NULL;
reset();
}
SndObjPartialTracking::~SndObjPartialTracking() {
if(_input) {
delete _input;
}
if(_analysis){
delete _analysis;
}
if(_peak_amplitude) {
delete [] _peak_amplitude;
}
if(_peak_frequency) {
delete [] _peak_frequency;
}
if(_peak_phase) {
delete [] _peak_phase;
}
_input = NULL;
_analysis = NULL;
_peak_amplitude = NULL;
_peak_frequency = NULL;;
_peak_phase = NULL;
}
void SndObjPartialTracking::reset() {
if(_input) {
delete _input;
}
if(_analysis){
delete _analysis;
}
if(_peak_amplitude) {
delete [] _peak_amplitude;
}
if(_peak_frequency) {
delete [] _peak_frequency;
}
if(_peak_phase) {
delete [] _peak_phase;
}
_input = new SndObj();
_analysis = new SinAnal(_input, _num_bins, _threshold, _max_partials);
_peak_amplitude = new sample[_max_partials];
_peak_frequency = new sample[_max_partials];
_peak_phase = new sample[_max_partials];
memset(_peak_amplitude, 0.0, sizeof(sample) * _max_partials);
memset(_peak_frequency, 0.0, sizeof(sample) * _max_partials);
memset(_peak_phase, 0.0, sizeof(sample) * _max_partials);
}
void SndObjPartialTracking::max_partials(int new_max_partials) {
_max_partials = new_max_partials;
reset();
}
Peaks SndObjPartialTracking::update_partials(Frame* frame) {
int num_peaks = _max_partials;
if(num_peaks > frame->num_peaks()) {
num_peaks = frame->num_peaks();
}
for(int i = 0; i < num_peaks; i++) {
_peak_amplitude[i] = frame->peak(i)->amplitude;
_peak_frequency[i] = frame->peak(i)->frequency;
_peak_phase[i] = frame->peak(i)->phase;
}
_analysis->SetPeaks(_max_partials, _peak_amplitude,
_max_partials, _peak_frequency,
_max_partials, _peak_phase);
_analysis->PartialTracking();
int num_partials = _analysis->GetTracks();
Peaks peaks;
for(int i = 0; i < num_partials; i++) {
Peak* p = new Peak();
p->amplitude = _analysis->Output(i * 3);
p->frequency = _analysis->Output((i * 3) + 1);
p->phase = _analysis->Output((i * 3) + 2);
peaks.push_back(p);
frame->add_partial(p);
}
for(int i = num_partials; i < _max_partials; i++) {
Peak* p = new Peak();
peaks.push_back(p);
frame->add_partial(p);
}
return peaks;
}
// ---------------------------------------------------------------------------
// LorisPartialTracking
// ---------------------------------------------------------------------------
SimplLorisPTAnalyzer::SimplLorisPTAnalyzer(int max_partials) :
Loris::Analyzer(50, 100),
_env(1.0) {
buildFundamentalEnv(false);
_partial_builder = new Loris::PartialBuilder(m_freqDrift);
_partial_builder->maxPartials(max_partials);
}
SimplLorisPTAnalyzer::~SimplLorisPTAnalyzer() {
delete _partial_builder;
}
void SimplLorisPTAnalyzer::analyze() {
m_ampEnvBuilder->reset();
m_f0Builder->reset();
// estimate the amplitude in this frame
m_ampEnvBuilder->build(peaks, 0);
// estimate the fundamental frequency
m_f0Builder->build(peaks, 0);
// form partials
_partial_builder->buildPartials(peaks);
partials = _partial_builder->getPartials();
}
// ---------------------------------------------------------------------------
LorisPartialTracking::LorisPartialTracking() {
_analyzer = NULL;
reset();
}
LorisPartialTracking::~LorisPartialTracking() {
if(_analyzer) {
delete _analyzer;
}
}
void LorisPartialTracking::reset() {
if(_analyzer) {
delete _analyzer;
}
_analyzer = new SimplLorisPTAnalyzer(_max_partials);
}
void LorisPartialTracking::max_partials(int new_max_partials) {
_max_partials = new_max_partials;
reset();
}
Peaks LorisPartialTracking::update_partials(Frame* frame) {
int num_peaks = frame->num_peaks();
if(num_peaks > _max_partials) {
num_peaks = _max_partials;
}
Peaks peaks;
_analyzer->peaks.clear();
for(int i = 0; i < num_peaks; i++) {
Loris::Breakpoint bp = Loris::Breakpoint(frame->peak(i)->frequency,
frame->peak(i)->amplitude,
frame->peak(i)->bandwidth,
frame->peak(i)->phase);
_analyzer->peaks.push_back(Loris::SpectralPeak(0, bp));
}
_analyzer->analyze();
int num_partials = _analyzer->partials.size();
for(int i = 0; i < num_partials; i++) {
Peak* p = new Peak();
p->amplitude = _analyzer->partials[i].amplitude();
p->frequency = _analyzer->partials[i].frequency();
p->phase = _analyzer->partials[i].phase();
p->bandwidth = _analyzer->partials[i].bandwidth();
peaks.push_back(p);
frame->add_partial(p);
}
return peaks;
}
|