Hidden Markov Models with C++ [closed]

若如初见. 提交于 2019-11-29 23:12:24

You can take a look at http://www.ece.ucsb.edu/Faculty/Rabiner/ece259/Reprints/tutorial%20on%20hmm%20and%20applications.pdf for the theory behind HMMs. It's not hard to implement the algorithms yourself.

For a C-based version, you can take a look at my implementation, http://code.google.com/p/accelges/, which I've done for a Google Summer of Code project.

There is also this implementation that I wrote several days ago. It is a class for discrete HMM using OpenCV. You may take a look here:

https://sourceforge.net/projects/cvhmm/

After quantization of your features, you can convert each feature vector to one label and use the sequence of labels to train a discrete HMM.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!