Mercurial > hg > pyin
comparison MonoNoteHMM.cpp @ 132:926c292fa3ff fixedlag
fixed lag smoothing for pitch track working
author | Matthias Mauch <mail@matthiasmauch.net> |
---|---|
date | Fri, 03 Jul 2015 17:34:38 +0100 |
parents | 080fe18f5ebf |
children | 83978b93aac1 |
comparison
equal
deleted
inserted
replaced
131:b877df85ad9e | 132:926c292fa3ff |
---|---|
19 #include <cmath> | 19 #include <cmath> |
20 | 20 |
21 using std::vector; | 21 using std::vector; |
22 using std::pair; | 22 using std::pair; |
23 | 23 |
24 MonoNoteHMM::MonoNoteHMM() : | 24 MonoNoteHMM::MonoNoteHMM(int fixedLag) : |
25 SparseHMM(fixedLag), | |
25 par() | 26 par() |
26 { | 27 { |
27 build(); | 28 build(); |
28 } | 29 } |
29 | 30 |