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