- Timestamp:
- Mar 2, 2013, 8:18:00 PM (12 years ago)
- Branches:
- feature/autosink, feature/cnn, feature/cnn_org, feature/constantq, feature/crepe, feature/crepe_org, feature/pitchshift, feature/pydocstrings, feature/timestretch, fix/ffmpeg5, master, pitchshift, sampler, timestretch, yinfft+
- Children:
- 2a2636a
- Parents:
- 867084e
- Location:
- src/spectral
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/spectral/filterbank_mel.h
r867084e rc0608bd 22 22 /** \file 23 23 24 Mel frequency filter bankd coefficients24 Filterbank object coefficients initialization 25 25 26 Set filter bank coefficients to Mel frequency bands. 27 28 The filter coefficients are built according to Malcolm Slaney's Auditory 29 Toolbox available at http://cobweb.ecn.purdue.edu/~malcolm/interval/1998-010/ 30 (see the file mfcc.m). 26 Functions to create set the ::aubio_filterbank_t coefficients to 27 - ::aubio_filterbank_set_triangle_bands: overlapping triangular bands, 28 - ::aubio_filterbank_set_mel_coeffs_slaney: Mel frequency bands. 31 29 32 30 */ … … 58 56 \param samplerate audio sampling rate 59 57 60 This function fills the filterbank coefficients according to Malcolm Slaney. 58 The filter coefficients are built according to Malcolm Slaney's Auditory 59 Toolbox, available at http://cobweb.ecn.purdue.edu/~malcolm/interval/1998-010/ 60 (see file mfcc.m). 61 61 62 62 */ … … 68 68 #endif 69 69 70 #endif 70 #endif // FILTERBANK_MEL_H -
src/spectral/specdesc.h
r867084e rc0608bd 27 27 buffer (stored in a vector of size [1]). 28 28 29 \section specdesc Spectral description functions 30 29 31 A list of the spectral description methods currently available follows. 30 32 31 \s ection onsetdesc Onset detection functions33 \subsection onsetdesc Onset detection functions 32 34 33 35 These functions are designed to raise at notes attacks in music signals. … … 82 84 Canada, 2006. 83 85 84 \s ection shapedesc Spectral shape descriptors86 \subsection shapedesc Spectral shape descriptors 85 87 86 88 The following descriptors are described in: … … 139 141 is found. 140 142 143 \example spectral/test-specdesc.c 144 141 145 */ 142 146 … … 169 173 \param buf_size length of the input spectrum frame 170 174 175 The parameter \p method is a string that can be any of: 176 177 - `energy`, `hfc`, `complex`, `phase`, `specdiff`, `kl`, `mkl`, `specflux` 178 - `centroid`, `spread`, `skewness`, `kurtosis`, `slope`, `decrease`, `rolloff` 179 171 180 */ 172 181 aubio_specdesc_t *new_aubio_specdesc (char_t * method, uint_t buf_size);
Note: See TracChangeset
for help on using the changeset viewer.