I'm using a Hidden Markov Model for gesture recognition. I have already created the transition matrix using data from a set of training data. I can't seem to find any sources for creating the emission matrix.
Could I create it like so?
B_ij = (# of transitions from state j to observation i)/(# of states j)
Note that I created the transition matrix in a similar way:
A_qs = (# transitions from state q to state s)/(# transitions from state q)