Home | History | Annotate | Download | only in src

Lines Matching refs:boost_type

56     boost_type = CvBoost::REAL;
68 boost_type = _boost_type;
256 int boost_type = ensemble->get_params().boost_type;
268 split_criteria = boost_type == CvBoost::DISCRETE ? CvBoost::MISCLASS : CvBoost::GINI;
347 int boost_type = ensemble->get_params().boost_type;
373 split_criteria = boost_type == CvBoost::DISCRETE ? CvBoost::MISCLASS : CvBoost::GINI;
706 int boost_type = ensemble->get_params().boost_type;
723 if( boost_type == CvBoost::DISCRETE )
732 assert( boost_type == CvBoost::REAL );
879 if( params.boost_type != DISCRETE && params.boost_type != REAL &&
880 params.boost_type != LOGIT && params.boost_type != GENTLE )
889 if( params.boost_type == DISCRETE &&
892 if( params.boost_type == REAL &&
895 if( (params.boost_type == LOGIT || params.boost_type == GENTLE) &&
1027 if( params.boost_type == LOGIT )
1041 else if( params.boost_type == GENTLE )
1080 if( params.boost_type == DISCRETE )
1114 else if( params.boost_type == REAL )
1132 else if( params.boost_type == LOGIT )
1184 assert( params.boost_type == GENTLE );
1450 params.boost_type == DISCRETE ? "DiscreteAdaboost" :
1451 params.boost_type == REAL ? "RealAdaboost" :
1452 params.boost_type == LOGIT ? "LogitBoost" :
1453 params.boost_type == GENTLE ? "GentleAdaboost" : 0;
1458 params.boost_type == MISCLASS ? "Misclassification" :
1459 params.boost_type == SQERR ? "SquaredErr" : 0;
1464 cvWriteInt( fs, "boosting_type", params.boost_type );
1509 params.boost_type = strcmp( boost_type_str, "DiscreteAdaboost" ) == 0 ? DISCRETE :
1515 params.boost_type = cvReadInt( temp, -1 );
1517 if( params.boost_type < DISCRETE || params.boost_type > GENTLE )
1532 if( params.split_criteria < DEFAULT || params.boost_type > SQERR )