Changed line 1266 in svm.cpp to allow the new kernels to be used

This commit is contained in:
Markus Schoeler 2013-02-14 15:28:10 +01:00
parent 7cab6798c0
commit ddb0afbc44

View File

@ -1262,7 +1262,8 @@ bool CvSVM::set_params( const CvSVMParams& _params )
svm_type = params.svm_type;
if( kernel_type != LINEAR && kernel_type != POLY &&
kernel_type != SIGMOID && kernel_type != RBF )
kernel_type != SIGMOID && kernel_type != RBF &&
kernel_type != INTER && kernel_type != CHI2)
CV_ERROR( CV_StsBadArg, "Unknown/unsupported kernel type" );
if( kernel_type == LINEAR )