Home | History | Annotate | Download | only in src

Lines Matching refs:tmp_node

2124     CvFileNode* tmp_node = cvGetFileNodeByName( fs, svm_node, "svm_type" );
2126 if( !tmp_node )
2129 if( CV_NODE_TYPE(tmp_node->tag) == CV_NODE_INT )
2130 svm_type = cvReadInt( tmp_node, -1 );
2133 const char* svm_type_str = cvReadString( tmp_node, "" );
2149 tmp_node = cvGetFileNodeByName( fs, kernel_node, "type" );
2150 if( !tmp_node )
2153 if( CV_NODE_TYPE(tmp_node->tag) == CV_NODE_INT )
2154 kernel_type = cvReadInt( tmp_node, -1 );
2157 const char* kernel_type_str = cvReadString( tmp_node, "" );
2179 tmp_node = cvGetFileNodeByName( fs, svm_node, "term_criteria" );
2180 if( tmp_node )
2182 _params.term_crit.epsilon = cvReadRealByName( fs, tmp_node, "epsilon", -1. );
2183 _params.term_crit.max_iter = cvReadIntByName( fs, tmp_node, "iterations", -1 );