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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
|
////////////////////////////////////////////////////////////////////////
// This file is part of the SndObj library
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 2 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
//
// Copyright (c)Victor Lazzarini, 1997-2004
// See License.txt for a disclaimer of all warranties
// and licensing information
#include "SinAnal.h"
SinAnal::SinAnal(){
m_thresh = 0.f;
m_startupThresh = 0.f;
m_maxtracks = 0;
m_tracks = 0;
m_prev = 1; m_cur =0;
m_numbins = m_accum = 0;
m_bndx = m_pkmags = m_adthresh = 0;
m_phases = m_freqs = m_mags = m_bins = 0;
m_tstart = m_lastpk = m_trkid = 0;
m_trndx = 0;
m_binmax = m_magmax = m_diffs = 0;
m_maxix = 0;
m_contflag = 0;
m_minpoints = 0;
m_maxgap = 3;
m_numpeaks = 0;
AddMsg("max tracks", 21);
AddMsg("threshold", 22);
}
SinAnal::SinAnal(SndObj* input, float threshold, int maxtracks,
int minpoints, int maxgap, float sr)
:SndObj(input,maxtracks*3,sr){
m_minpoints = (minpoints > 1 ? minpoints : 1) - 1;
m_thresh = threshold;
m_startupThresh = 0.f;
m_maxtracks = maxtracks;
m_tracks = 0;
m_prev = 1; m_cur = 0; m_accum = 0;
m_maxgap = maxgap;
m_numpeaks = 0;
m_numbins = ((FFT *)m_input)->GetFFTSize()/2 + 1;
m_bndx = new float*[minpoints+2];
m_pkmags = new float*[minpoints+2];
m_adthresh = new float*[minpoints+2];
m_tstart = new unsigned int*[minpoints+2];
m_lastpk = new unsigned int*[minpoints+2];
m_trkid = new unsigned int*[minpoints+2];
int i;
for(i=0; i<minpoints+2; i++){
m_bndx[i] = new float[m_maxtracks];
memset(m_bndx[i],0,sizeof(float)*m_maxtracks);
m_pkmags[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_adthresh[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_tstart[i] = new unsigned int[m_maxtracks];
memset(m_tstart[i],0,sizeof(unsigned int)*m_maxtracks);
m_lastpk[i] = new unsigned int[m_maxtracks];
memset(m_lastpk[i],0,sizeof(unsigned int)*m_maxtracks);
m_trkid[i] = new unsigned int[m_maxtracks];
memset(m_trkid[i],0,sizeof(unsigned int)*m_maxtracks);
}
m_bins = new float[m_maxtracks];
memset(m_bins, 0, sizeof(float) * m_maxtracks);
m_trndx = new int[m_maxtracks];
memset(m_trndx, 0, sizeof(int) * m_maxtracks);
m_contflag = new bool[m_maxtracks];
memset(m_contflag, 0, sizeof(bool) * m_maxtracks);
m_phases = new float[m_numbins];
memset(m_phases, 0, sizeof(float) * m_numbins);
m_freqs = new float[m_numbins];
memset(m_freqs, 0, sizeof(float) * m_numbins);
m_mags = new float[m_numbins];
memset(m_mags, 0, sizeof(float) * m_numbins);
m_binmax = new float[m_numbins];
memset(m_binmax, 0, sizeof(float) * m_numbins);
m_magmax = new float[m_numbins];
memset(m_magmax, 0, sizeof(float) * m_numbins);
m_diffs = new float[m_numbins];
memset(m_diffs, 0, sizeof(float) * m_numbins);
m_maxix = new int[m_numbins];
memset(m_maxix, 0, sizeof(float) * m_numbins);
m_timecount = 0;
m_phases[0] = 0.f;
m_freqs[0] = 0.f;
m_phases[m_numbins-1] = 0.f;
m_freqs[m_numbins-1] = m_sr/2;
AddMsg("max tracks", 21);
AddMsg("threshold", 22);
for(i = 0; i < m_maxtracks; i++)
m_pkmags[m_prev][i] = m_bndx[m_prev][i] = m_adthresh[m_prev][i] = 0.f;
}
SinAnal::SinAnal(SndObj* input, int numbins, float threshold, int maxtracks,
int minpoints, int maxgap, float sr)
:SndObj(input,maxtracks*3,sr){
m_minpoints = (minpoints > 1 ? minpoints : 1) - 1;
m_thresh = threshold;
m_startupThresh = 0.f;
m_maxtracks = maxtracks;
m_tracks = 0;
m_prev = 1; m_cur = 0; m_accum = 0;
m_maxgap = maxgap;
m_numpeaks = 0;
m_numbins = numbins;
m_bndx = new float*[minpoints+2];
m_pkmags = new float*[minpoints+2];
m_adthresh = new float*[minpoints+2];
m_tstart = new unsigned int*[minpoints+2];
m_lastpk = new unsigned int*[minpoints+2];
m_trkid = new unsigned int*[minpoints+2];
int i;
for(i=0; i<minpoints+2; i++){
m_bndx[i] = new float[m_maxtracks];
memset(m_bndx[i],0,sizeof(float)*m_maxtracks);
m_pkmags[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_adthresh[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_tstart[i] = new unsigned int[m_maxtracks];
memset(m_tstart[i],0,sizeof(unsigned int)*m_maxtracks);
m_lastpk[i] = new unsigned int[m_maxtracks];
memset(m_lastpk[i],0,sizeof(unsigned int)*m_maxtracks);
m_trkid[i] = new unsigned int[m_maxtracks];
memset(m_trkid[i],0,sizeof(unsigned int)*m_maxtracks);
}
m_bins = new float[m_maxtracks];
memset(m_bins, 0, sizeof(float) * m_maxtracks);
m_trndx = new int[m_maxtracks];
memset(m_trndx, 0, sizeof(int) * m_maxtracks);
m_contflag = new bool[m_maxtracks];
memset(m_contflag, 0, sizeof(bool) * m_maxtracks);
m_phases = new float[m_numbins];
memset(m_phases, 0, sizeof(float) * m_numbins);
m_freqs = new float[m_numbins];
memset(m_freqs, 0, sizeof(float) * m_numbins);
m_mags = new float[m_numbins];
memset(m_mags, 0, sizeof(float) * m_numbins);
m_binmax = new float[m_numbins];
memset(m_binmax, 0, sizeof(float) * m_numbins);
m_magmax = new float[m_numbins];
memset(m_magmax, 0, sizeof(float) * m_numbins);
m_diffs = new float[m_numbins];
memset(m_diffs, 0, sizeof(float) * m_numbins);
m_maxix = new int[m_numbins];
memset(m_maxix, 0, sizeof(float) * m_numbins);
m_timecount = 0;
m_phases[0] = 0.f;
m_freqs[0] = 0.f;
m_phases[m_numbins-1] = 0.f;
m_freqs[m_numbins-1] = m_sr/2;
AddMsg("max tracks", 21);
AddMsg("threshold", 22);
for(i = 0; i < m_maxtracks; i++)
m_pkmags[m_prev][i] = m_bndx[m_prev][i] = m_adthresh[m_prev][i] = 0.f;
}
SinAnal::~SinAnal(){
delete[] m_phases;
delete[] m_freqs;
delete[] m_mags;
delete[] m_binmax;
delete[] m_magmax;
delete[] m_diffs;
delete[] m_maxix;
delete[] m_bndx;
delete[] m_pkmags;
delete[] m_adthresh;
delete[] m_tstart;
delete[] m_lastpk;
delete[] m_trkid;
delete[] m_trndx;
delete[] m_contflag;
delete[] m_bins;
}
void
SinAnal::SetMaxTracks(int maxtracks){
m_maxtracks = maxtracks;
if(m_numbins){
delete[] m_bndx;
delete[] m_pkmags;
delete[] m_adthresh;
delete[] m_trndx;
delete[] m_contflag;
delete[] m_bins;
}
m_contflag = new bool[m_maxtracks];
m_bins = new float[m_maxtracks];
m_trndx = new int[m_maxtracks];
m_prev = m_minpoints+1; m_cur = 0;
m_bndx = new float*[2];
m_pkmags = new float*[2];
m_adthresh = new float*[2];
m_tstart = new unsigned int*[2];
m_lastpk = new unsigned int*[2];
m_trkid = new unsigned int*[2];
int i;
for(i=0; i<m_minpoints+2; i++){
m_bndx[i] = new float[m_maxtracks];
memset(m_bndx[i],0,sizeof(float)*m_maxtracks);
m_pkmags[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_adthresh[i] = new float[m_maxtracks];
memset(m_pkmags[i],0,sizeof(float)*m_maxtracks);
m_tstart[i] = new unsigned int[m_maxtracks];
memset(m_tstart[i],0,sizeof(unsigned int)*m_maxtracks);
m_lastpk[i] = new unsigned int[m_maxtracks];
memset(m_lastpk[i],0,sizeof(unsigned int)*m_maxtracks);
m_trkid[i] = new unsigned int[m_maxtracks];
memset(m_trkid[i],0,sizeof(unsigned int)*m_maxtracks);
}
for(i = 0; i < m_maxtracks; i++)
m_pkmags[m_prev][i] = m_bndx[m_prev][i] = m_adthresh[m_prev][i] = 0.f;
SetVectorSize(m_maxtracks*3);
}
void
SinAnal::SetIFGram(SndObj* input){
if(m_input){
delete[] m_phases;
delete[] m_freqs;
delete[] m_mags;
delete[] m_binmax;
delete[] m_magmax;
delete[] m_diffs;
delete[] m_maxix;
}
SetInput(input);
m_numbins = ((FFT *)m_input)->GetFFTSize()/2 + 1;
m_phases = new float[m_numbins];
m_freqs = new float[m_numbins];
m_mags = new float[m_numbins];
m_binmax = new float[m_numbins];
m_magmax = new float[m_numbins];
m_diffs = new float[m_numbins];
m_maxix = new int[m_numbins];
m_phases[0] = 0.f;
m_freqs[0] = 0.f;
m_phases[m_numbins-1] = 0.f;
m_freqs[m_numbins-1] = m_sr/2;
}
int
SinAnal::Set(char* mess, float value){
switch(FindMsg(mess)){
case 21:
SetMaxTracks((int)value);
return 1;
case 22:
SetThreshold(value);
return 1;
default:
return SndObj::Set(mess, value);
}
}
int
SinAnal::Connect(char* mess, void *input){
switch(FindMsg(mess)){
case 3:
SetIFGram((SndObj *)input);
return 1;
default:
return SndObj::Connect(mess, input);
}
}
int
SinAnal::peakdetection(){
float logthresh;
int i = 0, n = 0;
float max = 0.f;
double y1, y2, a, b, ftmp;
for(i=0; i<m_numbins;i++)
if(max < m_mags[i]) max = m_mags[i];
m_startupThresh = m_thresh*max;
logthresh = log(m_startupThresh/5.f);
// Quadratic Interpolation
// obtains bin indexes and magnitudes
// m_binmax & m_magmax respectively
bool test1 = true, test2 = false;
// take the logarithm of the magnitudes
for(i=0; i<m_numbins;i++)
m_mags[i] = log(m_mags[i]);
for(i=0;i < m_numbins-1; i++) {
if(i) test1 = (m_mags[i] > m_mags[i-1] ? true : false );
else test1 = false;
test2 = (m_mags[i] >= m_mags[i+1] ? true : false); // check!
if((m_mags[i] > logthresh) &&
(test1 && test2)){
m_maxix[n] = i;
n++;
}
}
for(i =0; i < n; i++){
int rmax;
rmax = m_maxix[i];
y1 = m_mags[rmax] - (ftmp = (rmax ? m_mags[rmax-1] : m_mags[rmax+1])) + 0.000001;
y2 = (rmax < m_numbins-1 ? m_mags[rmax+1] : m_mags[rmax]) - ftmp + 0.000001;
a = (y2 - 2*y1)/2.f;
b = 1.f - y1/a;
m_binmax[i] = (float) (rmax - 1. + b/2.);
m_magmax[i] = (float) exp(ftmp - a*b*b/4.);
}
return n;
}
int
SinAnal::FindPeaks(){
if(!m_error){
if(m_input){
int i2;
// input is in "real-spec" format packing 0 and Nyquist
// together in pos 0 and 1
for(m_vecpos=1; m_vecpos < m_numbins-1; m_vecpos++){
i2 = m_vecpos*2;
m_phases[m_vecpos] = ((PVA *)m_input)->Outphases(m_vecpos);
m_freqs[m_vecpos] = m_input->Output(i2+1);
m_mags[m_vecpos] = m_input->Output(i2);
}
m_mags[0] = m_input->Output(0);
m_mags[m_numbins-1] = m_input->Output(1);
if(m_enable){
// find peaks
int n = 0;
n = peakdetection();
// output peaks
for(m_vecpos=0; m_vecpos < m_vecsize; m_vecpos += 3){
int pos = m_vecpos/3, ndx;
float frac, a, b;
if((pos < n) && (pos < m_maxtracks)){
// bin number
ndx = Ftoi(m_binmax[pos]);
// fractional part of bin number
frac = (m_binmax[pos] - ndx);
// amplitude
m_output[m_vecpos] = m_magmax[pos];
// frequency
a = m_freqs[ndx];
b = (m_binmax[pos] < m_numbins-1 ? (m_freqs[ndx+1] - a) : 0);
m_output[m_vecpos+1] = a + frac*b;
// phase
m_output[m_vecpos+2] = m_phases[ndx];
}
else{
m_output[m_vecpos] =
m_output[m_vecpos+1] =
m_output[m_vecpos+2] = 0.f;
}
}
if(n > m_maxtracks){
n = m_maxtracks;
}
return n;
}
else // if disabled
for(m_vecpos=0; m_vecpos < m_vecsize;m_vecpos++)
m_output[m_vecpos] = 0.f;
return 1;
}
else {
m_error = 11;
return 0;
}
}
return 0;
}
void
SinAnal::SetPeaks(int numamps, float* amps, int numfreqs,
float* freqs, int numphases, float* phases){
float binwidth = (m_sr / 2) / m_numbins;
m_numpeaks = numamps;
for(int i = 0; i < m_numbins; i++){
if(i < m_numpeaks){
m_magmax[i] = amps[i];
m_binmax[i] = freqs[i] / binwidth;
m_phases[i] = phases[i];
}
else{
m_magmax[i] = m_binmax[i] = m_phases[i] = 0.f;
}
}
}
void
SinAnal::PartialTracking(){
int bestix, count=0, i = 0, n = 0, j = 0;
float dbstep;
// reset allowcont flags
for(i=0; i < m_maxtracks; i++){
m_contflag[i] = false;
}
// loop to the end of tracks (indicate by the 0'd bins)
// find continuation tracks
for(j=0; m_bndx[m_prev][j] != 0.f && j < m_maxtracks; j++){
int foundcont = 0;
if(m_numpeaks > 0){ // check for peaks; m_numpeaks will be > 0
float F = m_bndx[m_prev][j];
for(i=0; i < m_numbins; i++){
m_diffs[i] = m_binmax[i] - F; //differences
m_diffs[i] = (m_diffs[i] < 0 ? -m_diffs[i] : m_diffs[i]);
}
bestix = 0; // best index
for(i=0; i < m_numbins; i++)
if(m_diffs[i] < m_diffs[bestix]) bestix = i;
// if difference smaller than 1 bin
float tempf = F - m_binmax[bestix];
tempf = (tempf < 0 ? -tempf : tempf);
if(tempf < 1.){
// if amp jump is too great (check)
if(m_adthresh[m_prev][j] <
(dbstep = 20*log10(m_magmax[bestix]/m_pkmags[m_prev][j]))){
// mark for discontinuation;
m_contflag[j] = false;
}
else {
m_bndx[m_prev][j] = m_binmax[bestix];
m_pkmags[m_prev][j] = m_magmax[bestix];
// track index keeps track history
// so we know which ones continue
m_contflag[j] = true;
m_binmax[bestix] = m_magmax[bestix] = 0.f;
m_lastpk[m_prev][j] = m_timecount;
foundcont = 1;
count++;
// update the adaptive mag threshold
float tmp1 = dbstep*1.5f;
float tmp2 = m_adthresh[m_prev][j] -
(m_adthresh[m_prev][j] - 1.5f)*0.048770575f;
m_adthresh[m_prev][j] = (tmp1 > tmp2 ? tmp1 : tmp2);
} // else
} // if difference
// if check
}
// if we did not find a continuation
// we'll check if the magnitudes around it are below
// a certain threshold. Mags[] holds the logs of the magnitudes
// Check also if the last peak in this track is more than m_maxgap
// old
if(!foundcont){
if((exp(m_mags[int(m_bndx[m_prev][j]+0.5)]) < 0.2*m_pkmags[m_prev][j])
|| ((m_timecount - m_lastpk[m_prev][j]) > (unsigned int) m_maxgap))
{
m_contflag[j] = false;
} else {
m_contflag[j] = true;
count++;
}
}
} // for loop
// compress the arrays
for(i=0, n=0; i < m_maxtracks; i++){
if(m_contflag[i]){
m_bndx[m_cur][n] = m_bndx[m_prev][i];
m_pkmags[m_cur][n] = m_pkmags[m_prev][i];
m_adthresh[m_cur][n] = m_adthresh[m_prev][i];
m_tstart[m_cur][n] = m_tstart[m_prev][i];
m_trkid[m_cur][n] = m_trkid[m_prev][i];
m_lastpk[m_cur][n] = m_lastpk[m_prev][i];
n++;
} // ID == -1 means zero'd track
else
m_trndx[i] = -1;
}
if(count < m_maxtracks){
// if we have not exceeded available tracks.
// create new tracks for all new peaks
for(j=0; j< m_numbins && count < m_maxtracks; j++){
if(m_magmax[j] > m_startupThresh){
m_bndx[m_cur][count] = m_binmax[j];
m_pkmags[m_cur][count] = m_magmax[j];
m_adthresh[m_cur][count] = 400.f;
// track ID is a positive number in the
// range of 0 - maxtracks*3 - 1
// it is given when the track starts
// used to identify and match tracks
m_tstart[m_cur][count] = m_timecount;
m_trkid[m_cur][count] = ((m_accum++)%m_vecsize);
m_lastpk[m_cur][count] = m_timecount;
count++;
}
}
for(i = count; i < m_maxtracks; i++){
// zero the right-hand size of the current arrays
if(i >= count)
m_pkmags[m_cur][i] = m_bndx[m_cur][i] = m_adthresh[m_cur][i] = 0.f;
}
} // if count != maxtracks
// count is the number of continuing tracks + new tracks
// now we check for tracks that have been there for more
// than minpoints hop periods and output them
m_tracks = 0;
for(i=0; i < count; i++){
int curpos = m_timecount-m_minpoints;
if(curpos >= 0 && m_tstart[m_cur][i] <= (unsigned int)curpos){
int tpoint = m_cur-m_minpoints;
if(tpoint < 0) {
tpoint += m_minpoints+2;
}
m_bins[i] = m_bndx[tpoint][i];
m_mags[i] = m_pkmags[tpoint][i];
m_trndx[i] = m_trkid[tpoint][i];
m_tracks++;
}
}
// end track-selecting
// current arrays become previous
//int tmp = m_prev;
m_prev = m_cur;
m_cur = (m_cur < m_minpoints+1 ? m_cur+1 : 0);
m_timecount++;
// Output
if(!m_error){
if(m_input){
if(m_enable){
float binwidth = (m_sr / 2) / m_numbins;
for(m_vecpos=0; m_vecpos < m_vecsize; m_vecpos += 3){
int pos = m_vecpos/3;
if((pos < m_tracks) && (pos < m_maxtracks)){
// amplitude
m_output[m_vecpos] = m_mags[pos];
// frequency
m_output[m_vecpos+1] = m_bins[pos] * binwidth;
// phase
m_output[m_vecpos+2] = m_phases[pos];
}
else{
m_output[m_vecpos] =
m_output[m_vecpos+1] =
m_output[m_vecpos+2] = 0.f;
}
}
}
else // if disabled
for(m_vecpos=0; m_vecpos < m_vecsize;m_vecpos++)
m_output[m_vecpos] = 0.f;
}
else {
m_error = 11;
}
}
}
void
SinAnal::sinanalysis(){
int bestix, count=0, i = 0, n = 0, j = 0;
float dbstep;
n = peakdetection();
// track-secting
// reset allowcont flags
for(i=0; i<m_maxtracks;i++){
m_contflag[i] = false;
}
// loop to the end of tracks (indicate by the 0'd bins)
// find continuation tracks
for(j=0; m_bndx[m_prev][j] != 0.f && j < m_maxtracks; j++){
int foundcont = 0;
if(n > 0){ // check for peaks; n will be > 0
float F = m_bndx[m_prev][j];
for(i=0; i < m_numbins; i++){
m_diffs[i] = m_binmax[i] - F; //differences
m_diffs[i] = (m_diffs[i] < 0 ? -m_diffs[i] : m_diffs[i]);
}
bestix = 0; // best index
for(i=0; i < m_numbins; i++)
if(m_diffs[i] < m_diffs[bestix]) bestix = i;
// if difference smaller than 1 bin
float tempf = F - m_binmax[bestix];
tempf = (tempf < 0 ? -tempf : tempf);
if(tempf < 1.){
// if amp jump is too great (check)
if(m_adthresh[m_prev][j] <
(dbstep = 20*log10(m_magmax[bestix]/m_pkmags[m_prev][j]))){
// mark for discontinuation;
m_contflag[j] = false;
}
else {
m_bndx[m_prev][j] = m_binmax[bestix];
m_pkmags[m_prev][j] = m_magmax[bestix];
// track index keeps track history
// so we know which ones continue
m_contflag[j] = true;
m_binmax[bestix] = m_magmax[bestix] = 0.f;
m_lastpk[m_prev][j] = m_timecount;
foundcont = 1;
count++;
// update the adaptive mag threshold
float tmp1 = dbstep*1.5f;
float tmp2 = m_adthresh[m_prev][j] -
(m_adthresh[m_prev][j] - 1.5f)*0.048770575f;
m_adthresh[m_prev][j] = (tmp1 > tmp2 ? tmp1 : tmp2);
} // else
} // if difference
// if check
}
// if we did not find a continuation
// we'll check if the magnitudes around it are below
// a certain threshold. Mags[] holds the logs of the magnitudes
// Check also if the last peak in this track is more than m_maxgap
// old
if(!foundcont){
if((exp(m_mags[int(m_bndx[m_prev][j]+0.5)]) < 0.2*m_pkmags[m_prev][j])
|| ((m_timecount - m_lastpk[m_prev][j]) > (unsigned int) m_maxgap))
{
m_contflag[j] = false;
} else {
m_contflag[j] = true;
count++;
}
}
} // for loop
// compress the arrays
for(i=0, n=0; i < m_maxtracks; i++){
if(m_contflag[i]){
m_bndx[m_cur][n] = m_bndx[m_prev][i];
m_pkmags[m_cur][n] = m_pkmags[m_prev][i];
m_adthresh[m_cur][n] = m_adthresh[m_prev][i];
m_tstart[m_cur][n] = m_tstart[m_prev][i];
m_trkid[m_cur][n] = m_trkid[m_prev][i];
m_lastpk[m_cur][n] = m_lastpk[m_prev][i];
n++;
} // ID == -1 means zero'd track
else
m_trndx[i] = -1;
}
if(count < m_maxtracks){
// if we have not exceeded available tracks.
// create new tracks for all new peaks
for(j=0; j< m_numbins && count < m_maxtracks; j++){
if(m_magmax[j] > m_startupThresh){
m_bndx[m_cur][count] = m_binmax[j];
m_pkmags[m_cur][count] = m_magmax[j];
m_adthresh[m_cur][count] = 400.f;
// track ID is a positive number in the
// range of 0 - maxtracks*3 - 1
// it is given when the track starts
// used to identify and match tracks
m_tstart[m_cur][count] = m_timecount;
m_trkid[m_cur][count] = ((m_accum++)%m_vecsize);
m_lastpk[m_cur][count] = m_timecount;
count++;
}
}
for(i = count; i < m_maxtracks; i++){
// zero the right-hand size of the current arrays
if(i >= count)
m_pkmags[m_cur][i] = m_bndx[m_cur][i] = m_adthresh[m_cur][i] = 0.f;
}
} // if count != maxtracks
// count is the number of continuing tracks + new tracks
// now we check for tracks that have been there for more
// than minpoints hop periods and output them
m_tracks = 0;
for(i=0; i < count; i++){
int curpos = m_timecount-m_minpoints;
if(curpos >= 0 && m_tstart[m_cur][i] <= (unsigned int)curpos){
int tpoint = m_cur-m_minpoints;
if(tpoint < 0) {
tpoint += m_minpoints+2;
}
m_bins[i] = m_bndx[tpoint][i];
m_mags[i] = m_pkmags[tpoint][i];
m_trndx[i] = m_trkid[tpoint][i];
m_tracks++;
}
}
// end track-selecting
// current arrays become previous
//int tmp = m_prev;
m_prev = m_cur;
m_cur = (m_cur < m_minpoints+1 ? m_cur+1 : 0);
m_timecount++;
}
short
SinAnal::DoProcess(){
if(!m_error){
if(m_input){
int i2;
// input is in "real-spec" format packing 0 and Nyquist
// together in pos 0 and 1
for(m_vecpos=1; m_vecpos < m_numbins-1; m_vecpos++){
i2 = m_vecpos*2;
m_phases[m_vecpos] = ((PVA *)m_input)->Outphases(m_vecpos);
m_freqs[m_vecpos] = m_input->Output(i2+1);
m_mags[m_vecpos] = m_input->Output(i2);
}
m_mags[0] = m_input->Output(0);
m_mags[m_numbins-1] = m_input->Output(1);
if(m_enable){
// sinusoidal analysis
// generates bin indexes and magnitudes
// m_bins and m_mags, respectively
sinanalysis();
// m_output holds [amp, freq, pha]
// m_vecsize is m_maxtracks*3
// estimated to be a little above count*3
for(m_vecpos=0; m_vecpos < m_vecsize; m_vecpos+=3){
int pos = m_vecpos/3, ndx;
float frac,a,b;
if(pos < m_tracks){
// magnitudes
ndx = Ftoi(m_bins[pos]);
m_output[m_vecpos] = m_mags[pos];
// fractional part of bin indexes
frac =(m_bins[pos] - ndx);
// freq Interpolation
// m_output[1,4,7, ..etc] holds track freq
a = m_freqs[ndx];
b = (m_bins[pos] < m_numbins-1 ? (m_freqs[ndx+1] - a) : 0);
m_output[m_vecpos+1] = a + frac*b;
// phase Interpolation
// m_output[2,5,8 ...] holds track phase
m_output[m_vecpos+2] = m_phases[ndx];
}
else{ // empty tracks
m_output[m_vecpos] =
m_output[m_vecpos+1] =
m_output[m_vecpos+2] = 0.f;
}
}
}
else // if disabled
for(m_vecpos=0; m_vecpos < m_vecsize;m_vecpos++)
m_output[m_vecpos] = 0.f;
return 1;
}
else {
m_error = 11;
return 0;
}
}
else return 0;
}
|