fixed CvSVM

This commit is contained in:
Maria Dimashova 2010-05-30 11:28:43 +00:00
parent a8bc74f2e1
commit be189a4578

View File

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