Mercurial > hg > qm-dsp
comparison dsp/chromagram/Chromagram.h @ 34:ad645e404d0c
* Add range of normalise options to chromagram
* bit of tidying
author | cannam |
---|---|
date | Tue, 22 Jan 2008 17:27:07 +0000 |
parents | 8bb764969d50 |
children | 114e833c07ac |
comparison
equal
deleted
inserted
replaced
33:499d438b52ba | 34:ad645e404d0c |
---|---|
19 unsigned int FS; | 19 unsigned int FS; |
20 double min; | 20 double min; |
21 double max; | 21 double max; |
22 unsigned int BPO; | 22 unsigned int BPO; |
23 double CQThresh; | 23 double CQThresh; |
24 bool isNormalised; | 24 MathUtilities::NormaliseType normalise; |
25 }; | 25 }; |
26 | 26 |
27 class Chromagram | 27 class Chromagram |
28 { | 28 { |
29 | 29 |
54 double m_FMin; | 54 double m_FMin; |
55 double m_FMax; | 55 double m_FMax; |
56 unsigned int m_BPO; | 56 unsigned int m_BPO; |
57 unsigned int m_uK; | 57 unsigned int m_uK; |
58 | 58 |
59 bool isNormalised; | 59 MathUtilities::NormaliseType m_normalise; |
60 | 60 |
61 unsigned int m_frameSize; | 61 unsigned int m_frameSize; |
62 unsigned int m_hopSize; | 62 unsigned int m_hopSize; |
63 | 63 |
64 FFT* m_FFT; | 64 FFT* m_FFT; |