/external/opencv/ml/src/ |
ml_inner_functions.cpp | 630 cvPreprocessOrderedResponses( const CvMat* responses, const CvMat* sample_idx, int sample_all ) 659 if( r_type == CV_32FC1 && CV_IS_MAT_CONT(responses->type) && !sample_idx ) 665 if( sample_idx ) 667 if( !CV_IS_MAT(sample_idx) || CV_MAT_TYPE(sample_idx->type) != CV_32SC1 || 668 sample_idx->rows != 1 && sample_idx->cols != 1 || !CV_IS_MAT_CONT(sample_idx->type) ) 670 if( sample_idx->rows + sample_idx->cols - 1 > sample_count [all...] |
_ml.h | 291 const CvMat* sample_idx, 323 const CvMat* sample_idx, int samples_all, 343 const CvMat* sample_idx, int sample_all ); 346 const CvMat* sample_idx, int sample_all, 350 const CvMat* var_idx, const CvMat* sample_idx,
|
mlem.cpp | 78 CvEM::CvEM( const CvMat* samples, const CvMat* sample_idx, 85 train(samples, sample_idx, params, labels); 308 CvMat* sample_idx = 0; local 325 0, 0, 0, &sample_idx )); 374 int idx = sample_idx ? sample_idx->data.i[i] : i; 387 if( sample_idx != _sample_idx ) 388 cvReleaseMat( &sample_idx ); [all...] |
mlann_mlp.cpp | 691 CvMat* sample_idx = 0; local 732 CV_CALL( sample_idx = cvPreprocessIndexArray( _sample_idx, _inputs->rows )); 733 sidx = sample_idx->data.i; 734 count = sample_idx->cols + sample_idx->rows - 1; 807 cvReleaseMat( &sample_idx ); [all...] |
mltree.cpp | 130 CvMat* sample_idx = 0; local 213 CV_CALL( sample_idx = cvPreprocessIndexArray( _sample_idx, sample_all )); 214 sidx = sample_idx->data.i; 215 sample_count = sample_idx->rows + sample_idx->cols - 1; 540 cvReleaseMat( &sample_idx ); [all...] |
mlsvm.cpp | [all...] |
mlcnn.cpp | 56 const CvMat* CV_DEFAULT(0), const CvMat* sample_idx CV_DEFAULT(0), [all...] |
/external/opencv/ml/include/ |
ml.h | 596 CvEM( const CvMat* samples, const CvMat* sample_idx=0, 601 virtual bool train( const CvMat* samples, const CvMat* sample_idx=0, [all...] |