Mercurial > hg > nnls-chroma
diff NNLSBase.cpp @ 86:e5c16976513d consonance
implemented note output for estimated chords
author | matthiasm |
---|---|
date | Sun, 28 Nov 2010 23:10:57 +0900 |
parents | 4270f3039ab0 |
children | 7af5312e66f8 |
line wrap: on
line diff
--- a/NNLSBase.cpp Thu Nov 25 02:26:52 2010 +0900 +++ b/NNLSBase.cpp Sun Nov 28 23:10:57 2010 +0900 @@ -44,8 +44,6 @@ m_kernelNoteIndex(0), m_dict(0), m_tuneLocal(0), - m_chorddict(0), - m_chordnames(0), m_doNormalizeChroma(0), m_rollon(0), m_s(0.7), @@ -60,9 +58,6 @@ m_dict = new float[nNote * 84]; for (unsigned i = 0; i < nNote * 84; ++i) m_dict[i] = 0.0; dictionaryMatrix(m_dict, 0.7); - - // get the *chord* dictionary from file (if the file exists) - m_chordnames = chordDictionary(&m_chorddict); }