Home | History | Annotate | Download | only in src

Lines Matching refs:vcount

231 void CvSVMKernel::calc_non_rbf_base( int vcount, int var_count, const float** vecs,
236 for( j = 0; j < vcount; j++ )
250 void CvSVMKernel::calc_linear( int vcount, int var_count, const float** vecs,
253 calc_non_rbf_base( vcount, var_count, vecs, another, results, 1, 0 );
257 void CvSVMKernel::calc_poly( int vcount, int var_count, const float** vecs,
260 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
261 calc_non_rbf_base( vcount, var_count, vecs, another, results, params->gamma, params->coef0 );
266 void CvSVMKernel::calc_sigmoid( int vcount, int var_count, const float** vecs,
270 calc_non_rbf_base( vcount, var_count, vecs, another, results,
273 for( j = 0; j < vcount; j++ )
285 void CvSVMKernel::calc_rbf( int vcount, int var_count, const float** vecs,
288 CvMat R = cvMat( 1, vcount, QFLOAT_TYPE, results );
292 for( j = 0; j < vcount; j++ )
322 void CvSVMKernel::calc( int vcount, int var_count, const float** vecs,
327 (this->*calc_func)( vcount, var_count, vecs, another, results );
328 for( j = 0; j < vcount; j++ )