Mercurial > hg > multitrack-audio-matcher
comparison src/AudioEventMatcher.h @ 0:c4f9e49226eb
Initialising repository. Live osc input registered. Files analysed offline.
author | Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk> |
---|---|
date | Tue, 31 Jan 2012 13:54:17 +0000 |
parents | |
children | 852173ca8365 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:c4f9e49226eb |
---|---|
1 /* | |
2 * AudioEventMatcher.h | |
3 * MultipleAudioMathcher | |
4 * | |
5 * Created by Andrew on 31/01/2012. | |
6 * Copyright 2012 QMUL. All rights reserved. | |
7 * | |
8 */ | |
9 | |
10 | |
11 | |
12 #ifndef AUDIO_EVENT_MATCHER_H | |
13 #define AUDIO_EVENT_MATCHER_H | |
14 | |
15 | |
16 #include "ofMain.h" | |
17 #include "ChromaOnset.h" | |
18 #include "LiveAudioInput.h" | |
19 #include "ofxWindowRegion.h" | |
20 #include "BayesianArrayStructure.h" | |
21 | |
22 class AudioEventMatcher{ | |
23 | |
24 public: | |
25 AudioEventMatcher(); | |
26 | |
27 void setArraySizes(); | |
28 | |
29 void draw(); | |
30 | |
31 BayesianArrayStructure bayesianStruct;//hold the probability distriubtions | |
32 | |
33 LiveAudioInput liveInput;//hold the new events that come in | |
34 | |
35 ofxWindowRegion bayesTempoWindow; | |
36 ofxWindowRegion bayesPositionWindow; | |
37 | |
38 | |
39 }; | |
40 #endif |