Mercurial > hg > multitrack-audio-matcher
comparison src/AudioEventMatcher.h @ 8:572564b7cb85
added calculation posterior into both onset and pitch processes
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Fri, 03 Feb 2012 13:28:59 +0000 |
parents | 33dedfe32893 |
children | bc62266af280 |
comparison
equal
deleted
inserted
replaced
7:33dedfe32893 | 8:572564b7cb85 |
---|---|
25 | 25 |
26 public: | 26 public: |
27 AudioEventMatcher(); | 27 AudioEventMatcher(); |
28 | 28 |
29 void setArraySizes(); | 29 void setArraySizes(); |
30 | |
31 void updateBestAlignmentPosition(); | |
30 | 32 |
31 void draw(); | 33 void draw(); |
32 void drawBayesianDistributions();; | 34 void drawBayesianDistributions();; |
33 void setWindowDimensions(); | 35 void setWindowDimensions(); |
34 | 36 |
60 bool usingRealTime; | 62 bool usingRealTime; |
61 double recentPitch, recentTime; | 63 double recentPitch, recentTime; |
62 | 64 |
63 DynamicVector likelihoodVisualisation[3]; | 65 DynamicVector likelihoodVisualisation[3]; |
64 DynamicVector recentPrior; | 66 DynamicVector recentPrior; |
67 | |
68 double currentAlignmentPosition; | |
69 double lastAlignmentTime; | |
70 | |
71 double recentEventTime[3]; | |
72 double startTime; | |
65 | 73 |
66 }; | 74 }; |
67 #endif | 75 #endif |