mirror of
https://github.com/opencv/opencv.git
synced 2024-12-04 00:39:11 +08:00
fixed CvSVM
This commit is contained in:
parent
a8bc74f2e1
commit
be189a4578
@ -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…
Reference in New Issue
Block a user