[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 | |
---|
[f1b6aad] | 21 | /* default values : alpha=4, beta=3, threshold=0.25 */ |
---|
[96fb8ad] | 22 | |
---|
| 23 | #include "aubio_priv.h" |
---|
[6c7d49b] | 24 | #include "fvec.h" |
---|
| 25 | #include "cvec.h" |
---|
[96fb8ad] | 26 | #include "mathutils.h" |
---|
[32d6958] | 27 | #include "spectral/tss.h" |
---|
[96fb8ad] | 28 | |
---|
[f1b6aad] | 29 | struct _aubio_tss_t |
---|
[96fb8ad] | 30 | { |
---|
[f1b6aad] | 31 | smpl_t threshold; |
---|
| 32 | smpl_t alpha; |
---|
[96fb8ad] | 33 | smpl_t beta; |
---|
| 34 | smpl_t parm; |
---|
[102b732] | 35 | smpl_t thrsfact; |
---|
[96fb8ad] | 36 | fvec_t *theta1; |
---|
| 37 | fvec_t *theta2; |
---|
| 38 | fvec_t *oft1; |
---|
| 39 | fvec_t *oft2; |
---|
| 40 | fvec_t *dev; |
---|
| 41 | }; |
---|
| 42 | |
---|
| 43 | void aubio_tss_do(aubio_tss_t *o, cvec_t * input, |
---|
| 44 | cvec_t * trans, cvec_t * stead) |
---|
| 45 | { |
---|
[d95ff38] | 46 | uint_t j; |
---|
[f1b6aad] | 47 | uint_t test; |
---|
[96fb8ad] | 48 | uint_t nbins = input->length; |
---|
[f1b6aad] | 49 | smpl_t alpha = o->alpha; |
---|
[96fb8ad] | 50 | smpl_t beta = o->beta; |
---|
| 51 | smpl_t parm = o->parm; |
---|
[d95ff38] | 52 | smpl_t * dev = (smpl_t *)o->dev->data; |
---|
| 53 | smpl_t * oft1 = (smpl_t *)o->oft1->data; |
---|
| 54 | smpl_t * oft2 = (smpl_t *)o->oft2->data; |
---|
| 55 | smpl_t * theta1 = (smpl_t *)o->theta1->data; |
---|
| 56 | smpl_t * theta2 = (smpl_t *)o->theta2->data; |
---|
[96fb8ad] | 57 | /* second phase derivative */ |
---|
[d95ff38] | 58 | for (j=0;j<nbins; j++){ |
---|
| 59 | dev[j] = aubio_unwrap2pi(input->phas[j] |
---|
| 60 | -2.0*theta1[j]+theta2[j]); |
---|
| 61 | theta2[j] = theta1[j]; |
---|
| 62 | theta1[j] = input->phas[j]; |
---|
| 63 | } |
---|
| 64 | |
---|
| 65 | for (j=0;j<nbins; j++){ |
---|
| 66 | /* transient analysis */ |
---|
| 67 | test = (ABS(dev[j]) > parm*oft1[j]); |
---|
| 68 | trans->norm[j] = input->norm[j] * test; |
---|
| 69 | trans->phas[j] = input->phas[j] * test; |
---|
| 70 | } |
---|
| 71 | |
---|
| 72 | for (j=0;j<nbins; j++){ |
---|
| 73 | /* steady state analysis */ |
---|
| 74 | test = (ABS(dev[j]) < parm*oft2[j]); |
---|
| 75 | stead->norm[j] = input->norm[j] * test; |
---|
| 76 | stead->phas[j] = input->phas[j] * test; |
---|
| 77 | |
---|
| 78 | /*increase sstate probability for sines */ |
---|
| 79 | test = (trans->norm[j]==0.); |
---|
| 80 | oft1[j] = test; |
---|
| 81 | test = (stead->norm[j]==0.); |
---|
| 82 | oft2[j] = test; |
---|
| 83 | test = (trans->norm[j]>0.); |
---|
| 84 | oft1[j] += alpha*test; |
---|
| 85 | test = (stead->norm[j]>0.); |
---|
| 86 | oft2[j] += alpha*test; |
---|
| 87 | test = (oft1[j]>1. && trans->norm[j]>0.); |
---|
| 88 | oft1[j] += beta*test; |
---|
| 89 | test = (oft2[j]>1. && stead->norm[j]>0.); |
---|
| 90 | oft2[j] += beta*test; |
---|
[96fb8ad] | 91 | } |
---|
| 92 | } |
---|
| 93 | |
---|
[f1b6aad] | 94 | uint_t aubio_tss_set_threshold(aubio_tss_t *o, smpl_t threshold){ |
---|
| 95 | o->threshold = threshold; |
---|
| 96 | o->parm = o->threshold * o->thrsfact; |
---|
| 97 | return AUBIO_OK; |
---|
[102b732] | 98 | } |
---|
| 99 | |
---|
[d95ff38] | 100 | aubio_tss_t * new_aubio_tss(uint_t buf_size, uint_t hop_size) |
---|
[96fb8ad] | 101 | { |
---|
| 102 | aubio_tss_t * o = AUBIO_NEW(aubio_tss_t); |
---|
[f1b6aad] | 103 | uint_t rsize = buf_size/2+1; |
---|
| 104 | o->threshold = 0.25; |
---|
| 105 | o->thrsfact = TWO_PI*hop_size/rsize; |
---|
| 106 | o->alpha = 3.; |
---|
| 107 | o->beta = 4.; |
---|
| 108 | o->parm = o->threshold*o->thrsfact; |
---|
[d95ff38] | 109 | o->theta1 = new_fvec(rsize); |
---|
| 110 | o->theta2 = new_fvec(rsize); |
---|
| 111 | o->oft1 = new_fvec(rsize); |
---|
| 112 | o->oft2 = new_fvec(rsize); |
---|
| 113 | o->dev = new_fvec(rsize); |
---|
[96fb8ad] | 114 | return o; |
---|
| 115 | } |
---|
| 116 | |
---|
| 117 | void del_aubio_tss(aubio_tss_t *s) |
---|
| 118 | { |
---|
[34422b4] | 119 | del_fvec(s->theta1); |
---|
| 120 | del_fvec(s->theta2); |
---|
| 121 | del_fvec(s->oft1); |
---|
| 122 | del_fvec(s->oft2); |
---|
| 123 | del_fvec(s->dev); |
---|
[f66ccb9] | 124 | AUBIO_FREE(s); |
---|
[96fb8ad] | 125 | } |
---|
| 126 | |
---|
[f1b6aad] | 127 | uint_t aubio_tss_set_alpha(aubio_tss_t *o, smpl_t alpha){ |
---|
| 128 | o->alpha = alpha; |
---|
| 129 | return AUBIO_OK; |
---|
| 130 | } |
---|
| 131 | |
---|
| 132 | uint_t aubio_tss_set_beta(aubio_tss_t *o, smpl_t beta){ |
---|
| 133 | o->beta = beta; |
---|
| 134 | return AUBIO_OK; |
---|
| 135 | } |
---|
| 136 | |
---|