fixed CvSVM

pull/13383/head
Maria Dimashova 15 years ago
parent a8bc74f2e1
commit be189a4578
  1. 3
      modules/ml/src/svm.cpp

@ -261,7 +261,8 @@ void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs,
{
CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
cvPow( &R, &R, params->degree );
if( vcount > 0 )
cvPow( &R, &R, params->degree );
}

Loading…
Cancel
Save