Searched refs:cvReadIntByName (Results 1 - 10 of 10) sorted by relevance

/external/opencv/ml/src/
H A Dmlrtrees.cpp631 nclasses = cvReadIntByName( fs, fnode, "nclasses", -1 );
632 nsamples = cvReadIntByName( fs, fnode, "nsamples" );
633 nactive_vars = cvReadIntByName( fs, fnode, "nactive_vars", -1 );
635 ntrees = cvReadIntByName( fs, fnode, "ntrees", -1 );
H A Dmltree.cpp1074 is_classifier = (cvReadIntByName( fs, node, "is_classifier" ) != 0);
1075 var_all = cvReadIntByName( fs, node, "var_all" );
1076 var_count = cvReadIntByName( fs, node, "var_count", var_all );
1077 cat_var_count = cvReadIntByName( fs, node, "cat_var_count" );
1078 ord_var_count = cvReadIntByName( fs, node, "ord_var_count" );
1084 params.use_surrogates = cvReadIntByName( fs, tparams_node, "use_surrogates", 1 ) != 0;
1088 params.max_categories = cvReadIntByName( fs, tparams_node, "max_categories" );
1096 params.max_depth = cvReadIntByName( fs, tparams_node, "max_depth" );
1097 params.min_sample_count = cvReadIntByName( fs, tparams_node, "min_sample_count" );
1098 params.cv_folds = cvReadIntByName( f
[all...]
H A Dmlcnn.cpp1443 CV_CALL(n_input_planes = cvReadIntByName( fs, node, "n_input_planes", -1 ));
1444 CV_CALL(input_height = cvReadIntByName( fs, node, "input_height", -1 ));
1445 CV_CALL(input_width = cvReadIntByName( fs, node, "input_width", -1 ));
1446 CV_CALL(n_output_planes = cvReadIntByName( fs, node, "n_output_planes", -1 ));
1447 CV_CALL(output_height = cvReadIntByName( fs, node, "output_height", -1 ));
1448 CV_CALL(output_width = cvReadIntByName( fs, node, "output_width", -1 ));
1449 CV_CALL(layer_type = cvReadIntByName( fs, node, "layer_type", -1 ));
1452 CV_CALL(learn_type = cvReadIntByName( fs, node, "learn_rate_decrease_type", -1 ));
H A Dmlnbayes.cpp469 CV_CALL( var_count = cvReadIntByName( fs, root_node, "var_count", -1 ));
470 CV_CALL( var_all = cvReadIntByName( fs, root_node, "var_all", -1 ));
H A Dmlsvm.cpp2183 _params.term_crit.max_iter = cvReadIntByName( fs, tmp_node, "iterations", -1 );
2219 sv_total = cvReadIntByName( fs, svm_node, "sv_total", -1 );
2220 var_all = cvReadIntByName( fs, svm_node, "var_all", -1 );
2221 var_count = cvReadIntByName( fs, svm_node, "var_count", var_all );
2222 class_count = cvReadIntByName( fs, svm_node, "class_count", 0 );
2280 int sv_count = cvReadIntByName( fs, df_elem, "sv_count", -1 );
H A Dmlann_mlp.cpp1414 activ_func = cvReadIntByName( fs, node, "activation_function" );
1454 params.term_crit.max_iter = cvReadIntByName( fs, tcrit_node, "iterations", -1 );
H A Dmlboost.cpp1535 params.weak_count = cvReadIntByName( fs, fnode, "ntrees" );
/external/opencv/cxcore/src/
H A Dcxpersistence.cpp3583 CV_CALL( rows = cvReadIntByName( fs, node, "rows", 0 ));
3584 cols = cvReadIntByName( fs, node, "cols", 0 );
3983 CV_CALL( width = cvReadIntByName( fs, node, "width", 0 ));
3984 height = cvReadIntByName( fs, node, "height", 0 );
4010 roi.x = cvReadIntByName( fs, roi_node, "x", 0 );
4011 roi.y = cvReadIntByName( fs, roi_node, "y", 0 );
4012 roi.width = cvReadIntByName( fs, roi_node, "width", 0 );
4013 roi.height = cvReadIntByName( fs, roi_node, "height", 0 );
4014 coi = cvReadIntByName( fs, roi_node, "coi", 0 );
4301 total = cvReadIntByName( f
[all...]
/external/opencv/cv/src/
H A Dcvhistogram.cpp2376 is_uniform = cvReadIntByName( fs, node, "is_uniform", 0 );
2377 have_ranges = cvReadIntByName( fs, node, "have_ranges", 0);
/external/opencv/cxcore/include/
H A Dcxcore.h1657 CV_INLINE int cvReadIntByName( const CvFileStorage* fs, const CvFileNode* map, function

Completed in 362 milliseconds