Searched refs:_sample (Results 1 - 5 of 5) sorted by relevance

/external/opencv/ml/src/
H A Dmlboost.cpp1057 CvMat _sample, _mask; local
1064 _sample = cvMat( 1, data->var_count, CV_32F );
1071 _sample.data.fl = values;
1073 values += _sample.cols;
1075 weak_eval->data.db[i] = tree->predict( &_sample, &_mask, true )->value;
1262 CvBoost::predict( const CvMat* _sample, const CvMat* _missing,
1287 if( !CV_IS_MAT(_sample) || CV_MAT_TYPE(_sample->type) != CV_32FC1 ||
1288 _sample->cols != 1 && _sample
[all...]
H A Dmlem.cpp209 CvEM::predict( const CvMat* _sample, CvMat* _probs ) const argument
229 CV_CALL( cvPreparePredictData( _sample, dims, 0, params.nclusters, _probs, &sample_data ));
293 if( sample_data != _sample->data.fl )
982 CvMat* cov = covs[k], _mean, _sample; local
987 cvGetRow( samples, &_sample, k );
1002 _sample.data.db = (double*)(samples->data.ptr + samples->step*i);
1006 cvMulTransposed( &_sample, covs_item, 1, &_mean );
1012 double val = _sample.data.db[j] - _mean.data.db[j];
H A Dmltree.cpp2881 CvDTreeNode* CvDTree::predict( const CvMat* _sample, argument
2903 if( !CV_IS_MAT(_sample) || CV_MAT_TYPE(_sample->type) != CV_32FC1 ||
2904 _sample->cols != 1 && _sample->rows != 1 ||
2905 _sample->cols + _sample->rows - 1 != data->var_all && !preprocessed_input ||
2906 _sample->cols + _sample->rows - 1 != data->var_count && preprocessed_input )
2911 sample = _sample
[all...]
H A Dml_inner_functions.cpp1148 cvPreparePredictData( const CvArr* _sample, int dims_all, argument
1160 const CvMat* sample = (const CvMat*)_sample;
/external/opencv/ml/include/
H A Dml.h514 virtual float predict( const CvMat* _sample ) const;
845 virtual CvDTreeNode* predict( const CvMat* _sample, const CvMat* _missing_data_mask=0,
1101 virtual float predict( const CvMat* _sample, const CvMat* _missing=0,

Completed in 127 milliseconds