Mercurial > hg > vamp-tempogram
view AutocorrelationProcessor.h @ 39:716f797e2025
Further Makefile fixes
author | Chris Cannam |
---|---|
date | Fri, 12 Sep 2014 15:09:38 +0100 |
parents | 723af5b3303a |
children | 4cf2d163127b |
line wrap: on
line source
// // AutocorrelationProcessor.h // Tempogram // // Created by Carl Bussey on 20/08/2014. // Copyright (c) 2014 Carl Bussey. All rights reserved. // #ifndef __Tempogram__Autocorrelation__ #define __Tempogram__Autocorrelation__ #include <iostream> #include <vector> typedef std::vector< std::vector<float> > AutoCorrelation; class AutocorrelationProcessor{ public: AutocorrelationProcessor(const size_t &windowLength, const unsigned int &hopSize); ~AutocorrelationProcessor(); AutoCorrelation process(float * input, const size_t &inputLength) const; private: size_t m_windowLength; unsigned int m_hopSize; }; #endif /* defined(__Tempogram__Autocorrelation__) */