HomeSort by relevance Sort by last modified time
    Searched refs:sample_idx (Results 1 - 9 of 9) sorted by null

  /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/chromium_org/media/formats/mp4/
track_run_iterator.cc 525 size_t sample_idx = sample_itr_ - run_itr_->samples.begin(); local
526 DCHECK_LT(sample_idx, cenc_info_.size());
527 const FrameCENCInfo& cenc_info = cenc_info_[sample_idx];
537 const std::vector<uint8>& kid = GetKeyId(sample_idx);
  /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...]

Completed in 540 milliseconds