source: src/pitch/pitchyin.h @ 2d8cffa

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

move pitch methods to pitch/, onset detection functions to onset/

  • Property mode set to 100644
File size: 2.1 KB
Line 
1/*
2   Copyright (C) 2003 Paul Brossier
3
4   This program is free software; you can redistribute it and/or modify
5   it under the terms of the GNU General Public License as published by
6   the Free Software Foundation; either version 2 of the License, or
7   (at your option) any later version.
8
9   This program is distributed in the hope that it will be useful,
10   but WITHOUT ANY WARRANTY; without even the implied warranty of
11   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12   GNU General Public License for more details.
13
14   You should have received a copy of the GNU General Public License
15   along with this program; if not, write to the Free Software
16   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17*/
18
19/** \file
20 
21  Pitch detection using the YIN algorithm
22 
23  This algorithm was developped by A. de Cheveigne and H. Kawahara and
24  published in:
25 
26  De Cheveigné, A., Kawahara, H. (2002) "YIN, a fundamental frequency
27  estimator for speech and music", J. Acoust. Soc. Am. 111, 1917-1930. 
28 
29  see http://recherche.ircam.fr/equipes/pcm/pub/people/cheveign.html
30
31*/
32
33#ifndef PITCHYIN_H
34#define PITCHYIN_H
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40/** compute difference function
41 
42  \param input input signal
43  \param yinbuf output buffer to store difference function (half shorter than input)
44
45*/
46void aubio_pitchyin_diff(fvec_t * input, fvec_t * yinbuf);
47
48/** in place computation of the YIN cumulative normalised function
49 
50  \param yinbuf input signal (a square difference function), also used to store function
51
52*/
53void aubio_pitchyin_getcum(fvec_t * yinbuf);
54
55/** detect pitch in a YIN function
56 
57  \param yinbuf input buffer as computed by aubio_pitchyin_getcum
58
59*/
60uint_t aubio_pitchyin_getpitch(fvec_t *yinbuf);
61
62/** fast implementation of the YIN algorithm
63 
64  \param input input signal
65  \param yinbuf input buffer used to compute the YIN function
66  \param tol tolerance parameter for minima selection [default 0.15]
67
68*/
69smpl_t aubio_pitchyin_getpitchfast(fvec_t * input, fvec_t *yinbuf, smpl_t tol);
70
71#ifdef __cplusplus
72}
73#endif
74
75#endif /*PITCHYIN_H*/ 
Note: See TracBrowser for help on using the repository browser.