Lines Matching refs:transP
190 hmm[i].transP = icvCreateMatrix_32f( hmm[i].num_states, hmm[i].num_states );
206 icvDeleteMatrix( hmm[i].transP );
892 /* as a counter we will use transP matrix */
896 /* clear transP */
897 icvSetZero_32f( hmm->transP, hmm->num_states, hmm->num_states );
900 icvSetZero_32f( hmm->u.ehmm[i].transP , hmm->u.ehmm[i].num_states, hmm->u.ehmm[i].num_states );
929 hmm->transP[superstate * transP_size + nextsuperstate] += 1;
937 hmm->u.ehmm[superstate].transP[ state * transP_size + nextstate] += 1;
949 total += hmm->transP[i * hmm->num_states + j];
957 hmm->transP[i * hmm->num_states + j] =
958 hmm->transP[i * hmm->num_states + j] ?
959 (float)log( hmm->transP[i * hmm->num_states + j] * inv_total ) : -BIG_FLT;
974 total += ehmm->transP[i*ehmm->num_states + j];
981 ehmm->transP[i * ehmm->num_states + j] =
982 (ehmm->transP[i * ehmm->num_states + j]) ?
983 (float)log( ehmm->transP[i * ehmm->num_states + j] * inv_total) : -BIG_FLT ;
1094 icvViterbiSegmentation( int num_states, int /*num_obs*/, CvMatr32f transP,
1111 CvMatr32f m_a = transP;
1314 ehmm->transP, ehmm->obsProb[j], 0,
1325 hmm->transP, superB, 0,