Searched refs:svm_type (Results 1 – 2 of 2) sorted by relevance
/external/opencv/ml/src/ |
D | mlsvm.cpp | 170 svm_type(CvSVM::C_SVC), kernel_type(CvSVM::RBF), degree(0), in CvSVMParams() 181 svm_type(_svm_type), kernel_type(_kernel_type), in CvSVMParams() 403 int i, svm_type; in create() local 432 svm_type = kernel->params->svm_type; in create() 436 select_working_set_func = svm_type == CvSVM::NU_SVC || svm_type == CvSVM::NU_SVR ? in create() 441 calc_rho_func = svm_type == CvSVM::NU_SVC || svm_type == CvSVM::NU_SVR ? in create() 446 get_row_func = params->svm_type == CvSVM::EPS_SVR || in create() 447 params->svm_type == CvSVM::NU_SVR ? &CvSVMSolver::get_row_svr : in create() 448 params->svm_type == CvSVM::C_SVC || in create() 449 params->svm_type == CvSVM::NU_SVC ? &CvSVMSolver::get_row_svc : in create() [all …]
|
/external/opencv/ml/include/ |
D | ml.h | 327 int svm_type; member 533 virtual bool do_train( int svm_type, int sample_count, int var_count, const float** samples,
|