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

pull/490/head
Markus Schoeler 12 years ago
parent 7cab6798c0
commit ddb0afbc44
  1. 3
      modules/ml/src/svm.cpp

@ -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 )

Loading…
Cancel
Save