HomeSort by relevance Sort by last modified time
    Searched refs:transP (Results 1 - 3 of 3) sorted by null

  /external/opencv/cvaux/src/
cvhmm.cpp 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] =
    [all...]
cvhmm1d.cpp 254 hmm->transP = icvCreateMatrix_32f( hmm->num_states, hmm->num_states );
265 icvDeleteMatrix( hmm->transP );
835 /* as a counter we will use transP matrix */
839 /* clear transP */
840 icvSetZero_32f( hmm->transP, hmm->num_states, hmm->num_states );
863 hmm->transP[ state * transP_size + nextstate] += 1;
875 total += hmm->transP[i * hmm->num_states + j];
883 hmm->transP[i * hmm->num_states + j] =
884 hmm->transP[i * hmm->num_states + j] ?
885 (float)log( hmm->transP[i * hmm->num_states + j] * inv_total ) : -BIG_FLT
    [all...]
  /external/opencv/cvaux/include/
cvaux.h 132 float* transP;/*transition probab. matrices for states */
    [all...]

Completed in 189 milliseconds