comparison AutocorrelationProcessor.h @ 27:a3a37c8dcee7

* Fixed bug causing ACT not to work
author Carl Bussey <c.bussey@se10.qmul.ac.uk>
date Wed, 20 Aug 2014 16:48:54 +0100
parents ff6110f1144b
children 723af5b3303a
comparison
equal deleted inserted replaced
26:ff6110f1144b 27:a3a37c8dcee7
20 ~AutocorrelationProcessor(); 20 ~AutocorrelationProcessor();
21 AutoCorrelation process(float * input, const size_t &inputLength) const; 21 AutoCorrelation process(float * input, const size_t &inputLength) const;
22 private: 22 private:
23 size_t m_windowLength; 23 size_t m_windowLength;
24 unsigned int m_hopSize; 24 unsigned int m_hopSize;
25 unsigned int m_lagIncrement;
26 float * m_blockInput; 25 float * m_blockInput;
27 26
28 std::vector<float> processBlock() const; 27 std::vector<float> processBlock() const;
29 }; 28 };
30 29