source: src/pitch/pitchmcomb.c @ 9ffa590

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5
Last change on this file since 9ffa590 was c0ce78f, checked in by Paul Brossier <piem@piem.org>, 6 years ago

[pitch] comment out unused functions in mcomb and yin

  • Property mode set to 100644
File size: 14.5 KB
RevLine 
[96fb8ad]1/*
[e6a78ea]2  Copyright (C) 2003-2009 Paul Brossier <piem@aubio.org>
[96fb8ad]3
[e6a78ea]4  This file is part of aubio.
[96fb8ad]5
[e6a78ea]6  aubio is free software: you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation, either version 3 of the License, or
9  (at your option) any later version.
[96fb8ad]10
[e6a78ea]11  aubio is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  GNU General Public License for more details.
15
16  You should have received a copy of the GNU General Public License
17  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
[96fb8ad]18
19*/
20
21#include "aubio_priv.h"
[6c7d49b]22#include "fvec.h"
23#include "cvec.h"
[96fb8ad]24#include "mathutils.h"
[2d8cffa]25#include "pitch/pitchmcomb.h"
[96fb8ad]26
27#define CAND_SWAP(a,b) { register aubio_spectralcandidate_t *t=(a);(a)=(b);(b)=t; }
28
29typedef struct _aubio_spectralpeak_t aubio_spectralpeak_t;
30typedef struct _aubio_spectralcandidate_t aubio_spectralcandidate_t;
[fddfa64]31uint_t aubio_pitchmcomb_get_root_peak (aubio_spectralpeak_t * peaks,
32    uint_t length);
33uint_t aubio_pitchmcomb_quadpick (aubio_spectralpeak_t * spectral_peaks,
[ce3ff2b]34    const fvec_t * X);
35void aubio_pitchmcomb_spectral_pp (aubio_pitchmcomb_t * p, const fvec_t * oldmag);
36void aubio_pitchmcomb_combdet (aubio_pitchmcomb_t * p, const fvec_t * newmag);
[96fb8ad]37/* not used but useful : sort by amplitudes (or anything else)
38 * sort_pitchpeak(peaks, length);
39 */
[c0ce78f]40#if 0
[96fb8ad]41/** spectral_peak comparison function (must return signed int) */
[fddfa64]42static sint_t aubio_pitchmcomb_sort_peak_comp (const void *x, const void *y);
[96fb8ad]43/** sort spectral_peak against their mag */
[fddfa64]44void aubio_pitchmcomb_sort_peak (aubio_spectralpeak_t * peaks, uint_t nbins);
[9a12264]45/** select the best candidates */
[ce3ff2b]46uint_t aubio_pitch_cands (aubio_pitchmcomb_t * p, const cvec_t * fftgrain,
[fddfa64]47    smpl_t * cands);
[c0ce78f]48#endif
[96fb8ad]49
50/** sort spectral_candidate against their comb ene */
[fddfa64]51void aubio_pitchmcomb_sort_cand_ene (aubio_spectralcandidate_t ** candidates,
52    uint_t nbins);
[c0ce78f]53#if 0
[96fb8ad]54/** sort spectral_candidate against their frequency */
[fddfa64]55void aubio_pitchmcomb_sort_cand_freq (aubio_spectralcandidate_t ** candidates,
56    uint_t nbins);
[c0ce78f]57#endif
[96fb8ad]58
[fddfa64]59struct _aubio_pitchmcomb_t
60{
[96fb8ad]61  smpl_t threshold;                        /**< offset threshold [0.033 or 0.01]     */
62  smpl_t alpha;                            /**< normalisation exponent [9]           */
63  smpl_t cutoff;                           /**< low-pass filter cutoff [0.34, 1]     */
64  smpl_t tol;                              /**< tolerance [0.05]                     */
[e5757cf]65  // smpl_t tau;                              /**< frequency precision [44100/4096]     */
[96fb8ad]66  uint_t win_post;                         /**< median filter window length          */
67  uint_t win_pre;                          /**< median filter window                 */
68  uint_t ncand;                            /**< maximum number of candidates (combs) */
69  uint_t npartials;                        /**< maximum number of partials per combs */
70  uint_t count;                            /**< picked picks                         */
71  uint_t goodcandidate;                    /**< best candidate                       */
72  uint_t spec_partition;                   /**< spectrum partition to consider       */
[fddfa64]73  aubio_spectralpeak_t *peaks;             /**< up to length win/spec_partition      */
74  aubio_spectralcandidate_t **candidates;  /** up to five candidates                 */
[96fb8ad]75  /* some scratch pads */
76  /** \bug  (unnecessary copied from fftgrain?) */
[fddfa64]77  fvec_t *newmag;                          /**< vec to store mag                     */
78  fvec_t *scratch;                         /**< vec to store modified mag            */
79  fvec_t *scratch2;                        /**< vec to compute moving median         */
80  fvec_t *theta;                          /**< vec to store phase                     */
[d94f98b]81  smpl_t phasediff;
82  smpl_t phasefreq;
[96fb8ad]83  /** threshfn: name or handle of fn for computing adaptive threshold [median] */
84  /** aubio_thresholdfn_t thresholdfn; */
85  /** picker: name or handle of fn for picking event times [quadpick] */
86  /** aubio_pickerfn_t pickerfn; */
87};
88
89/** spectral peak object */
[fddfa64]90struct _aubio_spectralpeak_t
91{
[96fb8ad]92  uint_t bin;     /**< bin [0-(length-1)] */
93  smpl_t ebin;    /**< estimated bin */
94  smpl_t mag;     /**< peak magnitude */
95};
96
97/** spectral candidates array object */
[fddfa64]98struct _aubio_spectralcandidate_t
99{
[96fb8ad]100  smpl_t ebin;    /**< interpolated bin */
[fddfa64]101  smpl_t *ecomb;  /**< comb */
[96fb8ad]102  smpl_t ene;     /**< candidate energy */
103  smpl_t len;     /**< length */
104};
105
106
[fddfa64]107void
[ce3ff2b]108aubio_pitchmcomb_do (aubio_pitchmcomb_t * p, const cvec_t * fftgrain, fvec_t * output)
[fddfa64]109{
[168337e]110  uint_t j;
[d94f98b]111  smpl_t instfreq;
[fddfa64]112  fvec_t *newmag = (fvec_t *) p->newmag;
[96fb8ad]113  //smpl_t hfc; //fe=instfreq(theta1,theta,ops); //theta1=theta;
114  /* copy incoming grain to newmag */
[168337e]115  for (j = 0; j < newmag->length; j++)
116    newmag->data[j] = fftgrain->norm[j];
117  /* detect only if local energy > 10. */
[5b41ef9]118  //if (aubio_level_lin (newmag) * newmag->length > 10.) {
[168337e]119  //hfc = fvec_local_hfc(newmag); //not used
120  aubio_pitchmcomb_spectral_pp (p, newmag);
121  aubio_pitchmcomb_combdet (p, newmag);
122  //aubio_pitchmcomb_sort_cand_freq(p->candidates,p->ncand);
123  //return p->candidates[p->goodcandidate]->ebin;
124  j = (uint_t) FLOOR (p->candidates[p->goodcandidate]->ebin + .5);
125  instfreq = aubio_unwrap2pi (fftgrain->phas[j]
126      - p->theta->data[j] - j * p->phasediff);
127  instfreq *= p->phasefreq;
128  /* store phase for next run */
129  for (j = 0; j < p->theta->length; j++) {
130    p->theta->data[j] = fftgrain->phas[j];
[e5757cf]131  }
[168337e]132  //return p->candidates[p->goodcandidate]->ebin;
133  output->data[0] =
134      FLOOR (p->candidates[p->goodcandidate]->ebin + .5) + instfreq;
135  /*} else {
136     return -1.;
137     } */
[96fb8ad]138}
139
[c0ce78f]140#if 0
[fddfa64]141uint_t
[ce3ff2b]142aubio_pitch_cands (aubio_pitchmcomb_t * p, const cvec_t * fftgrain, smpl_t * cands)
[fddfa64]143{
[168337e]144  uint_t j;
[96fb8ad]145  uint_t k;
[fddfa64]146  fvec_t *newmag = (fvec_t *) p->newmag;
147  aubio_spectralcandidate_t **scands =
148      (aubio_spectralcandidate_t **) (p->candidates);
[96fb8ad]149  //smpl_t hfc; //fe=instfreq(theta1,theta,ops); //theta1=theta;
150  /* copy incoming grain to newmag */
[fddfa64]151  for (j = 0; j < newmag->length; j++)
[168337e]152    newmag->data[j] = fftgrain->norm[j];
[b050e8e]153  /* detect only if local energy > 10. */
[5b41ef9]154  if (aubio_level_lin (newmag) * newmag->length > 10.) {
[5c4ec3c]155    /* hfc = fvec_local_hfc(newmag); do not use */
[fddfa64]156    aubio_pitchmcomb_spectral_pp (p, newmag);
157    aubio_pitchmcomb_combdet (p, newmag);
158    aubio_pitchmcomb_sort_cand_freq (scands, p->ncand);
[b050e8e]159    /* store ncand comb energies in cands[1:ncand] */
[fddfa64]160    for (k = 0; k < p->ncand; k++)
[96fb8ad]161      cands[k] = p->candidates[k]->ene;
[b050e8e]162    /* store ncand[end] freq in cands[end] */
[fddfa64]163    cands[p->ncand] = p->candidates[p->ncand - 1]->ebin;
[96fb8ad]164    return 1;
165  } else {
[fddfa64]166    for (k = 0; k < p->ncand; k++)
[96fb8ad]167      cands[k] = 0;
168    return 0;
169  }
170}
[c0ce78f]171#endif
[96fb8ad]172
[fddfa64]173void
[ce3ff2b]174aubio_pitchmcomb_spectral_pp (aubio_pitchmcomb_t * p, const fvec_t * newmag)
[fddfa64]175{
176  fvec_t *mag = (fvec_t *) p->scratch;
177  fvec_t *tmp = (fvec_t *) p->scratch2;
[168337e]178  uint_t j;
[96fb8ad]179  uint_t length = mag->length;
180  /* copy newmag to mag (scracth) */
[fddfa64]181  for (j = 0; j < length; j++) {
[168337e]182    mag->data[j] = newmag->data[j];
[96fb8ad]183  }
[fddfa64]184  fvec_min_removal (mag);       /* min removal          */
185  fvec_alpha_normalise (mag, p->alpha); /* alpha normalisation  */
186  /* skipped *//* low pass filtering   */
[5c4ec3c]187  /** \bug fvec_moving_thres may write out of bounds */
[168337e]188  fvec_adapt_thres (mag, tmp, p->win_post, p->win_pre);      /* adaptative threshold */
[fddfa64]189  fvec_add (mag, -p->threshold);        /* fixed threshold      */
[96fb8ad]190  {
[fddfa64]191    aubio_spectralpeak_t *peaks = (aubio_spectralpeak_t *) p->peaks;
[96fb8ad]192    uint_t count;
193    /*  return bin and ebin */
[fddfa64]194    count = aubio_pitchmcomb_quadpick (peaks, mag);
195    for (j = 0; j < count; j++)
[168337e]196      peaks[j].mag = newmag->data[peaks[j].bin];
[96fb8ad]197    /* reset non peaks */
[fddfa64]198    for (j = count; j < length; j++)
[96fb8ad]199      peaks[j].mag = 0.;
200    p->peaks = peaks;
201    p->count = count;
202  }
203}
204
[fddfa64]205void
[ce3ff2b]206aubio_pitchmcomb_combdet (aubio_pitchmcomb_t * p, const fvec_t * newmag)
[fddfa64]207{
208  aubio_spectralpeak_t *peaks = (aubio_spectralpeak_t *) p->peaks;
209  aubio_spectralcandidate_t **candidate =
210      (aubio_spectralcandidate_t **) p->candidates;
[96fb8ad]211
212  /* parms */
[fddfa64]213  uint_t N = p->npartials;      /* maximum number of partials to be considered 10 */
214  uint_t M = p->ncand;          /* maximum number of combs to be considered 5 */
[96fb8ad]215  uint_t length = newmag->length;
216  uint_t count = p->count;
217  uint_t k;
218  uint_t l;
219  uint_t d;
[9638f84]220  uint_t curlen = 0;
[96fb8ad]221
222  smpl_t delta2;
223  smpl_t xx;
224  uint_t position = 0;
225
226  uint_t root_peak = 0;
227  uint_t tmpl = 0;
228  smpl_t tmpene = 0.;
229
230  /* get the biggest peak in the spectrum */
[fddfa64]231  root_peak = aubio_pitchmcomb_get_root_peak (peaks, count);
[e47ade3]232  /* not enough partials in highest notes, could be forced */
233  //if (peaks[root_peak].ebin >= aubio_miditofreq(85.)/p->tau) N=2;
234  //if (peaks[root_peak].ebin >= aubio_miditofreq(90.)/p->tau) N=1;
[96fb8ad]235  /* now calculate the energy of each of the 5 combs */
[fddfa64]236  for (l = 0; l < M; l++) {
237    smpl_t scaler = (1. / (l + 1.));
238    candidate[l]->ene = 0.;     /* reset ene and len sums */
[96fb8ad]239    candidate[l]->len = 0.;
[fddfa64]240    candidate[l]->ebin = scaler * peaks[root_peak].ebin;
[96fb8ad]241    /* if less than N peaks available, curlen < N */
[9638f84]242    if (candidate[l]->ebin != 0.)
[fddfa64]243      curlen = (uint_t) FLOOR (length / (candidate[l]->ebin));
244    curlen = (N < curlen) ? N : curlen;
[96fb8ad]245    /* fill candidate[l]->ecomb[k] with (k+1)*candidate[l]->ebin */
[fddfa64]246    for (k = 0; k < curlen; k++)
247      candidate[l]->ecomb[k] = (candidate[l]->ebin) * (k + 1.);
248    for (k = curlen; k < length; k++)
249      candidate[l]->ecomb[k] = 0.;
[96fb8ad]250    /* for each in candidate[l]->ecomb[k] */
[fddfa64]251    for (k = 0; k < curlen; k++) {
[d8604ac]252      xx = 100000.;
[b050e8e]253      /** get the candidate->ecomb the closer to peaks.ebin
[96fb8ad]254       * (to cope with the inharmonicity)*/
[fddfa64]255      for (d = 0; d < count; d++) {
256        delta2 = ABS (candidate[l]->ecomb[k] - peaks[d].ebin);
[96fb8ad]257        if (delta2 <= xx) {
258          position = d;
259          xx = delta2;
260        }
261      }
[b050e8e]262      /* for a Q factor of 17, maintaining "constant Q filtering",
[96fb8ad]263       * and sum energy and length over non null combs */
[fddfa64]264      if (17. * xx < candidate[l]->ecomb[k]) {
265        candidate[l]->ecomb[k] = peaks[position].ebin;
266        candidate[l]->ene +=    /* ecomb rounded to nearest int */
[168337e]267            POW (newmag->data[(uint_t) FLOOR (candidate[l]->ecomb[k] + .5)],
[fddfa64]268            0.25);
269        candidate[l]->len += 1. / curlen;
[96fb8ad]270      } else
[fddfa64]271        candidate[l]->ecomb[k] = 0.;
[96fb8ad]272    }
273    /* punishment */
[d94f98b]274    /*if (candidate[l]->len<0.6)
[fddfa64]275       candidate[l]->ene=0.; */
[d94f98b]276    /* remember best candidate energy (in polyphonic, could check for
277     * tmpene*1.1 < candidate->ene to reduce jumps towards low frequencies) */
278    if (tmpene < candidate[l]->ene) {
[96fb8ad]279      tmpl = l;
280      tmpene = candidate[l]->ene;
281    }
282  }
283  //p->candidates=candidate;
284  //p->peaks=peaks;
285  p->goodcandidate = tmpl;
286}
287
288/** T=quadpick(X): return indices of elements of X which are peaks and positive
289 * exact peak positions are retrieved by quadratic interpolation
290 *
[b050e8e]291 * \bug peak-picking too picky, sometimes counts too many peaks ?
[96fb8ad]292 */
[fddfa64]293uint_t
[ce3ff2b]294aubio_pitchmcomb_quadpick (aubio_spectralpeak_t * spectral_peaks, const fvec_t * X)
[fddfa64]295{
[168337e]296  uint_t j, ispeak, count = 0;
297  for (j = 1; j < X->length - 1; j++) {
298    ispeak = fvec_peakpick (X, j);
299    if (ispeak) {
300      count += ispeak;
301      spectral_peaks[count - 1].bin = j;
[f84cea7]302      spectral_peaks[count - 1].ebin = fvec_quadratic_peak_pos (X, j);
[96fb8ad]303    }
[168337e]304  }
[96fb8ad]305  return count;
306}
307
308/* get predominant partial */
[fddfa64]309uint_t
310aubio_pitchmcomb_get_root_peak (aubio_spectralpeak_t * peaks, uint_t length)
311{
312  uint_t i, pos = 0;
[96fb8ad]313  smpl_t tmp = 0.;
[fddfa64]314  for (i = 0; i < length; i++)
[96fb8ad]315    if (tmp <= peaks[i].mag) {
316      pos = i;
317      tmp = peaks[i].mag;
318    }
319  return pos;
320}
321
[c0ce78f]322#if 0
[fddfa64]323void
324aubio_pitchmcomb_sort_peak (aubio_spectralpeak_t * peaks, uint_t nbins)
325{
326  qsort (peaks, nbins, sizeof (aubio_spectralpeak_t),
[96fb8ad]327      aubio_pitchmcomb_sort_peak_comp);
328}
[fddfa64]329
330static sint_t
331aubio_pitchmcomb_sort_peak_comp (const void *x, const void *y)
332{
333  return (((aubio_spectralpeak_t *) y)->mag -
334      ((aubio_spectralpeak_t *) x)->mag);
[96fb8ad]335}
336
337
[fddfa64]338void
339aubio_pitchmcomb_sort_cand_ene (aubio_spectralcandidate_t ** candidates,
340    uint_t nbins)
341{
[96fb8ad]342  uint_t cur = 0;
343  uint_t run = 0;
[fddfa64]344  for (cur = 0; cur < nbins; cur++) {
[9ee1ee9]345    for (run = cur + 1; run < nbins; run++) {
[fddfa64]346      if (candidates[run]->ene > candidates[cur]->ene)
347        CAND_SWAP (candidates[run], candidates[cur]);
[96fb8ad]348    }
349  }
350}
351
[fddfa64]352void
353aubio_pitchmcomb_sort_cand_freq (aubio_spectralcandidate_t ** candidates,
354    uint_t nbins)
355{
[96fb8ad]356  uint_t cur = 0;
357  uint_t run = 0;
[fddfa64]358  for (cur = 0; cur < nbins; cur++) {
[9ee1ee9]359    for (run = cur + 1; run < nbins; run++) {
[fddfa64]360      if (candidates[run]->ebin < candidates[cur]->ebin)
361        CAND_SWAP (candidates[run], candidates[cur]);
[96fb8ad]362    }
363  }
364}
[c0ce78f]365#endif
[96fb8ad]366
[fddfa64]367aubio_pitchmcomb_t *
[168337e]368new_aubio_pitchmcomb (uint_t bufsize, uint_t hopsize)
[fddfa64]369{
370  aubio_pitchmcomb_t *p = AUBIO_NEW (aubio_pitchmcomb_t);
[7f3ccc5e]371  /* bug: should check if size / 8 > post+pre+1 */
[9638f84]372  uint_t i, j;
[96fb8ad]373  uint_t spec_size;
[fa74361]374  p->spec_partition = 2;
[fddfa64]375  p->ncand = 5;
376  p->npartials = 5;
377  p->cutoff = 1.;
378  p->threshold = 0.01;
379  p->win_post = 8;
380  p->win_pre = 7;
[e5757cf]381  // p->tau              = samplerate/bufsize;
[fddfa64]382  p->alpha = 9.;
383  p->goodcandidate = 0;
384  p->phasefreq = bufsize / hopsize / TWO_PI;
385  p->phasediff = TWO_PI * hopsize / bufsize;
[fa74361]386  spec_size = bufsize / p->spec_partition + 1;
[96fb8ad]387  //p->pickerfn = quadpick;
388  //p->biquad = new_biquad(0.1600,0.3200,0.1600, -0.5949, 0.2348);
389  /* allocate temp memory */
[168337e]390  p->newmag = new_fvec (spec_size);
[96fb8ad]391  /* array for median */
[168337e]392  p->scratch = new_fvec (spec_size);
[d94f98b]393  /* array for phase */
[168337e]394  p->theta = new_fvec (spec_size);
[96fb8ad]395  /* array for adaptative threshold */
[168337e]396  p->scratch2 = new_fvec (p->win_post + p->win_pre + 1);
[96fb8ad]397  /* array of spectral peaks */
[fddfa64]398  p->peaks = AUBIO_ARRAY (aubio_spectralpeak_t, spec_size);
[9638f84]399  for (i = 0; i < spec_size; i++) {
400    p->peaks[i].bin = 0.;
401    p->peaks[i].ebin = 0.;
402    p->peaks[i].mag = 0.;
403  }
[96fb8ad]404  /* array of pointers to spectral candidates */
[fddfa64]405  p->candidates = AUBIO_ARRAY (aubio_spectralcandidate_t *, p->ncand);
406  for (i = 0; i < p->ncand; i++) {
407    p->candidates[i] = AUBIO_NEW (aubio_spectralcandidate_t);
408    p->candidates[i]->ecomb = AUBIO_ARRAY (smpl_t, spec_size);
409    for (j = 0; j < spec_size; j++) {
[9638f84]410      p->candidates[i]->ecomb[j] = 0.;
411    }
412    p->candidates[i]->ene = 0.;
413    p->candidates[i]->ebin = 0.;
414    p->candidates[i]->len = 0.;
[96fb8ad]415  }
416  return p;
417}
418
[7a04950]419
[fddfa64]420void
421del_aubio_pitchmcomb (aubio_pitchmcomb_t * p)
422{
[7a04950]423  uint_t i;
[fddfa64]424  del_fvec (p->newmag);
425  del_fvec (p->scratch);
426  del_fvec (p->theta);
427  del_fvec (p->scratch2);
428  AUBIO_FREE (p->peaks);
429  for (i = 0; i < p->ncand; i++) {
430    AUBIO_FREE (p->candidates[i]->ecomb);
431    AUBIO_FREE (p->candidates[i]);
[7a04950]432  }
[fddfa64]433  AUBIO_FREE (p->candidates);
434  AUBIO_FREE (p);
[7a04950]435}
Note: See TracBrowser for help on using the repository browser.