Home
last modified time | relevance | path

Searched refs:start_step (Results 1 – 3 of 3) sorted by relevance

/external/opencv/ml/src/
Dmlem.cpp135 switch( params.start_step ) in set_params()
408 if( params.start_step == START_AUTO_STEP || nclusters == 1 || nclusters == nsamples ) in init_em()
410 else if( params.start_step == START_M_STEP ) in init_em()
428 CV_ASSERT( params.start_step == START_E_STEP && params.means ); in init_em()
793 int start_step = params.start_step; in run_em() local
865 if( start_step != START_M_STEP ) in run_em()
881 if( start_step == START_AUTO_STEP ) in run_em()
893 if( start_step == START_AUTO_STEP ) in run_em()
910 if( n > 0 || start_step != START_M_STEP ) in run_em()
/external/pdfium/core/src/fxcodec/codec/
Dfx_codec_progress.cpp190 int start_step = (int)step; in Calc() local
195 for (int des_row = start_step; des_row < end_step; des_row++) { in Calc()
198 pWeight->m_SrcStart = start_step; in Calc()
199 pWeight->m_SrcEnd = start_step; in Calc()
205 int length = end_step - start_step; in Calc()
208 (PixelWeight*)(m_pWeightTables + start_step * m_ItemSize); in Calc()
209 pWeight->m_SrcStart = start_step; in Calc()
210 pWeight->m_SrcEnd = start_step; in Calc()
214 for (int des_row = start_step + 1; des_row < end_step; des_row++) { in Calc()
217 pWeight->m_SrcStart = start_step; in Calc()
/external/opencv/ml/include/
Dml.h562 start_step(0/*CvEM::START_AUTO_STEP*/), probs(0), weights(0), means(0), covs(0) in CvEMParams()
571 nclusters(_nclusters), cov_mat_type(_cov_mat_type), start_step(_start_step), in nclusters()
577 int start_step; member