annotate Induction.cpp @ 7:3c11becfc81a
Add tempo induction class as well
author |
Chris Cannam |
date |
Tue, 27 Sep 2011 19:05:27 +0100 |
parents |
|
children |
4f6626f9ffac |
rev |
line source |
Chris@7
|
1 /* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */
|
Chris@7
|
2
|
Chris@7
|
3 /*
|
Chris@7
|
4 Vamp feature extraction plugin for the BeatRoot beat tracker.
|
Chris@7
|
5
|
Chris@7
|
6 Centre for Digital Music, Queen Mary, University of London.
|
Chris@7
|
7 This file copyright 2011 Simon Dixon, Chris Cannam and QMUL.
|
Chris@7
|
8
|
Chris@7
|
9 This program is free software; you can redistribute it and/or
|
Chris@7
|
10 modify it under the terms of the GNU General Public License as
|
Chris@7
|
11 published by the Free Software Foundation; either version 2 of the
|
Chris@7
|
12 License, or (at your option) any later version. See the file
|
Chris@7
|
13 COPYING included with this distribution for more information.
|
Chris@7
|
14 */
|
Chris@7
|
15
|
Chris@7
|
16 double Induction::clusterWidth = 0.025;
|
Chris@7
|
17 double Induction::minIOI = 0.070;
|
Chris@7
|
18 double Induction::maxIOI = 2.500;
|
Chris@7
|
19 double Induction::minIBI = 0.3;
|
Chris@7
|
20 double Induction::maxIBI = 1.0;
|
Chris@7
|
21 int Induction::topN = 10;
|
Chris@7
|
22
|