source: src/spectral/filterbank.h @ 86cfdfa

feature/autosinkfeature/cnnfeature/cnn_orgfeature/constantqfeature/crepefeature/crepe_orgfeature/pitchshiftfeature/pydocstringsfeature/timestretchfix/ffmpeg5pitchshiftsamplertimestretchyinfft+
Last change on this file since 86cfdfa was b8c0685, checked in by Paul Brossier <piem@piem.org>, 11 years ago

src/spectral/*.h: add link to examples

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[88199ce]1/*
[06cae6c]2  Copyright (C) 2007-2009 Paul Brossier <piem@aubio.org>
3                      and Amaury Hazan <ahazan@iua.upf.edu>
4
[1c2e186]5  This file is part of aubio.
[06cae6c]6
[1c2e186]7  aubio is free software: you can redistribute it and/or modify
[06cae6c]8  it under the terms of the GNU General Public License as published by
9  the Free Software Foundation, either version 3 of the License, or
10  (at your option) any later version.
11
[1c2e186]12  aubio is distributed in the hope that it will be useful,
[06cae6c]13  but WITHOUT ANY WARRANTY; without even the implied warranty of
14  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  GNU General Public License for more details.
16
17  You should have received a copy of the GNU General Public License
[1c2e186]18  along with aubio.  If not, see <http://www.gnu.org/licenses/>.
[06cae6c]19
[88199ce]20*/
21
[8708556]22/** \file
23
24  Filterbank object
25
[06cae6c]26  General-purpose spectral filterbank object.
[8708556]27
[b8c0685]28  \example spectral/test-filterbank.c
29
[8708556]30*/
31
[73eaa2e]32#ifndef FILTERBANK_H
33#define FILTERBANK_H
[88199ce]34
[7c6c806d]35#ifdef __cplusplus
[3b3b03e]36extern "C"
37{
[7c6c806d]38#endif
39
[b8c0685]40/** filterbank object
41
42  This object stores a matrix of spectral filter coefficients.
43
44 */
[e6c11e3]45typedef struct _aubio_filterbank_t aubio_filterbank_t;
[8708556]46
47/** create filterbank object
48
49  \param n_filters number of filters to create
[554e286]50  \param win_s size of analysis buffer (and length the FFT transform)
[8708556]51
52*/
[3b3b03e]53aubio_filterbank_t *new_aubio_filterbank (uint_t n_filters, uint_t win_s);
[8708556]54
[b276dee]55/** destroy filterbank object
56
[554e286]57  \param fb filterbank, as returned by new_aubio_filterbank() method
[b276dee]58
59*/
[3b3b03e]60void del_aubio_filterbank (aubio_filterbank_t * fb);
[b276dee]61
62/** compute filterbank
63
[06cae6c]64  \param fb filterbank containing     nfilt x win_s filter coefficients
65  \param in input spectrum containing chans x win_s spectrum
66  \param out output vector containing chans x nfilt output values
67
[b276dee]68*/
[3b3b03e]69void aubio_filterbank_do (aubio_filterbank_t * fb, cvec_t * in, fvec_t * out);
[7c6c806d]70
[d95ff38]71/** return a pointer to the matrix object containing all filter coefficients
[06cae6c]72
73  \param f filterbank object to get coefficients from
[17961b0]74
75 */
[d95ff38]76fmat_t *aubio_filterbank_get_coeffs (aubio_filterbank_t * f);
[17961b0]77
[33916b8]78/** copy filter coefficients to the filterbank
79
[554e286]80  \param f filterbank object to set coefficients
81  \param filters filter bank coefficients to copy from
[33916b8]82
83 */
[d95ff38]84uint_t aubio_filterbank_set_coeffs (aubio_filterbank_t * f, fmat_t * filters);
[33916b8]85
[7c6c806d]86#ifdef __cplusplus
87}
88#endif
[88199ce]89
[3b3b03e]90#endif                          // FILTERBANK_H
Note: See TracBrowser for help on using the repository browser.