00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #ifndef ONSETCOMPLEX_H
00020 #define ONSETCOMPLEX_H
00021
00022 #include "Typedefs.h"
00023 #include "Debug.h"
00024
00025 #include "Window.h"
00026 #include "FFT.h"
00027 #include "SpectralODFComplex.h"
00028
00029 class OnsetComplex {
00030 protected:
00031
00032 int _frameLength;
00033 int _fftLength;
00034 bool _zeroPhase;
00035 Window::WindowType _windowType;
00036
00037
00038 Window _window;
00039 FFT _fft;
00040 SpectralODFComplex _odf;
00041
00042 MatrixXR _windowed;
00043 MatrixXC _ffted;
00044
00045 public:
00046 OnsetComplex(int frameLength, int fftLength, Window::WindowType windowType = Window::RECTANGULAR, bool zeroPhase = true);
00047
00048 ~OnsetComplex();
00049
00050 void setup();
00051
00052 void process(const MatrixXR& samples, MatrixXR* odfValue);
00053
00054 void reset();
00055
00056 };
00057
00058 #endif