• Home
  • Raw
  • Download

Lines Matching refs:CvSVMKernel

190 CvSVMKernel::CvSVMKernel()  in CvSVMKernel()  function in CvSVMKernel
196 void CvSVMKernel::clear() in clear()
203 CvSVMKernel::~CvSVMKernel() in ~CvSVMKernel()
208 CvSVMKernel::CvSVMKernel( const CvSVMParams* _params, Calc _calc_func ) in CvSVMKernel() function in CvSVMKernel
215 bool CvSVMKernel::create( const CvSVMParams* _params, Calc _calc_func ) in create()
222 calc_func = params->kernel_type == CvSVM::RBF ? &CvSVMKernel::calc_rbf : in create()
223 params->kernel_type == CvSVM::POLY ? &CvSVMKernel::calc_poly : in create()
224 params->kernel_type == CvSVM::SIGMOID ? &CvSVMKernel::calc_sigmoid : in create()
225 &CvSVMKernel::calc_linear; in create()
231 void CvSVMKernel::calc_non_rbf_base( int vcount, int var_count, const float** vecs, in calc_non_rbf_base()
250 void CvSVMKernel::calc_linear( int vcount, int var_count, const float** vecs, in calc_linear()
257 void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs, in calc_poly()
266 void CvSVMKernel::calc_sigmoid( int vcount, int var_count, const float** vecs, in calc_sigmoid()
285 void CvSVMKernel::calc_rbf( int vcount, int var_count, const float** vecs, in calc_rbf()
322 void CvSVMKernel::calc( int vcount, int var_count, const float** vecs, in calc()
388 CvMemStorage* _storage, CvSVMKernel* _kernel, GetRow _get_row, in CvSVMSolver()
399 CvMemStorage* _storage, CvSVMKernel* _kernel, GetRow _get_row, in create()
956 CvSVMKernel* _kernel, double* _alpha, CvSVMSolutionInfo& _si ) in solve_c_svc()
982 CvMemStorage* _storage, CvSVMKernel* _kernel, in solve_nu_svc()
1029 CvMemStorage* _storage, CvSVMKernel* _kernel, in solve_one_class()
1061 CvSVMKernel* _kernel, double* _alpha, CvSVMSolutionInfo& _si ) in solve_eps_svr()
1097 CvSVMKernel* _kernel, double* _alpha, CvSVMSolutionInfo& _si ) in solve_nu_svr()
1271 kernel = new CvSVMKernel(&params,0); in create_kernel()