annotate ofxPreciseOnsetDetectorOffline/main.cpp @ 2:7ec1ed0b2eb0

Added offline precise onset detection, outputting precise locations in seconds to text file
author Andrew N Robertson <andrew.robertson@eecs.qmul.ac.uk>
date Mon, 30 Dec 2013 14:08:42 +0000
parents
children
rev   line source
andrew@2 1 #include "testApp.h"
andrew@2 2 #include "ofAppGlutWindow.h"
andrew@2 3
andrew@2 4 //--------------------------------------------------------------
andrew@2 5 int main(){
andrew@2 6 ofAppGlutWindow window; // create a window
andrew@2 7 // set width, height, mode (OF_WINDOW or OF_FULLSCREEN)
andrew@2 8 ofSetupOpenGL(&window, 1024, 768, OF_WINDOW);
andrew@2 9 ofRunApp(new testApp()); // start the app
andrew@2 10 }