/external/opencv3/modules/ml/test/ |
test_mltests2.cpp | 368 int MAX_DEPTH, MIN_SAMPLE_COUNT, MAX_CATEGORIES, CV_FOLDS; 374 modelParamsNode["max_categories"] >> MAX_CATEGORIES; 383 m->setMaxCategories(MAX_CATEGORIES); 414 int MAX_DEPTH, MIN_SAMPLE_COUNT, MAX_CATEGORIES, CV_FOLDS, NACTIVE_VARS, MAX_TREES_NUM; 420 modelParamsNode["max_categories"] >> MAX_CATEGORIES; 431 m->setMaxCategories(MAX_CATEGORIES);
|
/external/opencv3/apps/traincascade/ |
old_ml_tree.cpp | 95 if( params.max_categories < 2 ) 96 CV_ERROR( CV_StsOutOfRange, "params.max_categories should be >= 2" ); 97 params.max_categories = MIN( params.max_categories, 15 ); 341 size = is_classifier ? (cat_var_count + 1)*params.max_categories : cat_var_count*params.max_categories; [all...] |
old_ml.hpp | 632 CV_PROP_RW int max_categories; member in struct:CvDTreeParams 645 int max_categories, int cv_folds, [all...] |
old_ml_boost.cpp | [all...] |
/external/opencv/ml/src/ |
mltree.cpp | 89 if( params.max_categories < 2 ) 90 CV_ERROR( CV_StsOutOfRange, "params.max_categories should be >= 2" ); 91 params.max_categories = MIN( params.max_categories, 15 ); 1021 cvWriteInt( fs, "max_categories", params.max_categories ); [all...] |
mlrtrees.cpp | 246 params.regression_accuracy, params.use_surrogates, params.max_categories,
|
mlboost.cpp | [all...] |
/external/opencv3/modules/ml/ |
precomp.hpp | 135 CV_Error( CV_StsOutOfRange, "max_categories should be >= 2" );
|
/external/opencv3/modules/ml/src/ |
precomp.hpp | 135 CV_Error( CV_StsOutOfRange, "max_categories should be >= 2" );
|
tree.cpp | [all...] |
gbt.cpp | 1053 params.max_categories = data->params.max_categories; [all...] |
/external/opencv/ml/include/ |
ml.h | 707 int max_categories; member in struct:CvDTreeParams 717 CvDTreeParams() : max_categories(10), max_depth(INT_MAX), min_sample_count(10), 727 max_categories(_max_categories), max_depth(_max_depth), [all...] |
/external/opencv3/modules/ml/include/opencv2/ |
ml.hpp | [all...] |