Mercurial > hg > nnls-chroma
comparison NNLSBase.cpp @ 131:b547e7238bf5 darwintunes
removed old chord inference
author | matthiasm |
---|---|
date | Thu, 16 Jun 2011 17:28:22 +0100 |
parents | 21181297da99 |
children | a85e745c0721 3c731acad404 |
comparison
equal
deleted
inserted
replaced
130:014e62613e75 | 131:b547e7238bf5 |
---|---|
38 m_meanTunings(0), | 38 m_meanTunings(0), |
39 m_localTunings(0), | 39 m_localTunings(0), |
40 m_whitening(1.0), | 40 m_whitening(1.0), |
41 m_preset(0.0), | 41 m_preset(0.0), |
42 m_useNNLS(1.0), | 42 m_useNNLS(1.0), |
43 m_useHMM(1.0), | |
44 m_localTuning(0.0), | 43 m_localTuning(0.0), |
45 m_kernelValue(0), | 44 m_kernelValue(0), |
46 m_kernelFftIndex(0), | 45 m_kernelFftIndex(0), |
47 m_kernelNoteIndex(0), | 46 m_kernelNoteIndex(0), |
48 m_dict(0), | 47 m_dict(0), |
255 } | 254 } |
256 if (identifier == "chromanormalize") { | 255 if (identifier == "chromanormalize") { |
257 return m_doNormalizeChroma; | 256 return m_doNormalizeChroma; |
258 } | 257 } |
259 | 258 |
260 if (identifier == "useHMM") { | |
261 return m_useHMM; | |
262 } | |
263 | |
264 if (identifier == "usehartesyntax") { | 259 if (identifier == "usehartesyntax") { |
265 return m_harte_syntax; | 260 return m_harte_syntax; |
266 } | 261 } |
267 | 262 |
268 return 0; | 263 return 0; |
283 | 278 |
284 if (identifier == "s") { | 279 if (identifier == "s") { |
285 m_s = value; | 280 m_s = value; |
286 } | 281 } |
287 | 282 |
288 if (identifier == "useHMM") { | |
289 m_useHMM = value; | |
290 } | |
291 | |
292 if (identifier == "boostn") { | 283 if (identifier == "boostn") { |
293 m_boostN = value; | 284 m_boostN = value; |
294 } | 285 } |
295 | 286 |
296 if (identifier == "tuningmode") { | 287 if (identifier == "tuningmode") { |