comparison plugins/BarBeatTrack.h @ 144:67b6ea887d5d

* BeatTracker::BeatTracker has 4 new parameters: m_alpha, m_tightness, m_inputtempo and m_constraintempo * same applies to BarBeatTracker (protected)
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Wed, 12 Dec 2012 15:39:00 +0000
parents dcf5800f0f00
children
comparison
equal deleted inserted replaced
143:592ac92002a8 144:67b6ea887d5d
54 protected: 54 protected:
55 BarBeatTrackerData *m_d; 55 BarBeatTrackerData *m_d;
56 static float m_stepSecs; 56 static float m_stepSecs;
57 int m_bpb; 57 int m_bpb;
58 FeatureSet barBeatTrack(); 58 FeatureSet barBeatTrack();
59
60 // MEPD new protected parameters to allow the user to control these advanced parameters of the beat tracker
61 // changes are as per the BeatTrack.h
62 double m_alpha;
63 double m_tightness;
64 double m_inputtempo;
65 bool m_constraintempo;
59 }; 66 };
60 67
61 68
62 #endif 69 #endif