Home
last modified time | relevance | path

Searched refs:max_mix (Results 1 – 2 of 2) sorted by relevance

/external/opencv/cvaux/src/
Dcvhmm1d.cpp649 int max_mix = 0;
653 if( max_mix < t ) max_mix = t;
655 max_mix *= hmm->num_states;
656 /*if( max_size < max_mix )*/ max_size = max_mix;
679 int max_mix = 0;
686 if( max_mix < t ) max_mix = t;
695 float* log_mp = max_mix > 1 ? log_mix_prob : (float*)(hmm->obsProb);
703 /* !!!! */ for( m = 0; m < max_mix; m++ )
731 if( max_mix != 1 )
736 max_mix * obs_x * n_states );
[all …]
Dcvhmm.cpp714 int max_mix = 0; in icvEstimateObsProb() local
718 if( max_mix < t ) max_mix = t; in icvEstimateObsProb()
720 max_mix *= ehmm->num_states; in icvEstimateObsProb()
721 if( max_size < max_mix ) max_size = max_mix; in icvEstimateObsProb()
744 int max_mix = 0; in icvEstimateObsProb() local
751 if( max_mix < t ) max_mix = t; in icvEstimateObsProb()
760 float* log_mp = max_mix > 1 ? log_mix_prob : ehmm->obsProb[j]; in icvEstimateObsProb()
768 for( m = 0; m < max_mix; m++ ) in icvEstimateObsProb()
796 if( max_mix == 1 ) continue; in icvEstimateObsProb()
800 cvbFastExp( log_mix_prob, mix_prob, max_mix * obs_x * n_states ); in icvEstimateObsProb()
[all …]