annotate Induction.cpp @ 9:4f6626f9ffac
Many fixes. This now compiles and passes the plugin tester, but I don't expect it produces any results yet.
author |
Chris Cannam |
date |
Fri, 30 Sep 2011 15:39:17 +0100 |
parents |
3c11becfc81a |
children |
887c629502a9 |
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@9
|
16 #include "Induction.h"
|
Chris@9
|
17
|
Chris@7
|
18 double Induction::clusterWidth = 0.025;
|
Chris@7
|
19 double Induction::minIOI = 0.070;
|
Chris@7
|
20 double Induction::maxIOI = 2.500;
|
Chris@7
|
21 double Induction::minIBI = 0.3;
|
Chris@7
|
22 double Induction::maxIBI = 1.0;
|
Chris@7
|
23 int Induction::topN = 10;
|
Chris@7
|
24
|