Home
last modified time | relevance | path

Searched refs:nclusters (Results 1 – 4 of 4) sorted by relevance

/external/opencv/ml/src/
Dmlem.cpp106 for( i = 0; i < params.nclusters; i++ ) in clear()
151 if( params.nclusters < 1 ) in set_params()
161 p->cols != params.nclusters ) in set_params()
172 m->rows != params.nclusters || in set_params()
185 w->rows + w->cols - 1 != params.nclusters ) in set_params()
191 for( k = 0; k < params.nclusters; k++ ) in set_params()
220 int nclusters; in predict() local
227 nclusters = params.nclusters; in predict()
229 CV_CALL( cvPreparePredictData( _sample, dims, 0, params.nclusters, _probs, &sample_data )); in predict()
232 size = sizeof(double) * (nclusters + dims); in predict()
[all …]
Dml_inner_functions.cpp1896 int nclusters, nsamples; in icvFindClusterLabels() local
1903 nclusters = probs->cols; in icvFindClusterLabels()
1907 CV_CALL( counts = cvCreateMat( 1, nclusters + 1, CV_32SC1 ) ); in icvFindClusterLabels()
1912 nclusters, r, outlier_thresh, 1 ); in icvFindClusterLabels()
1917 for( j = 0; j < nclusters; j++ ) // outliers are ignored in icvFindClusterLabels()
/external/syslinux/libfat/
Dopen.c32 uint32_t nclusters; in libfat_open() local
80 nclusters = (fs->end - fs->data) >> fs->clustshift; in libfat_open()
81 fs->endcluster = nclusters + 2; in libfat_open()
83 if (nclusters <= 0xff4) { in libfat_open()
86 } else if (nclusters <= 0xfff4) { in libfat_open()
89 } else if (nclusters <= 0xffffff4) { in libfat_open()
/external/opencv/ml/include/
Dml.h561 CvEMParams() : nclusters(10), cov_mat_type(1/*CvEM::COV_MAT_DIAGONAL*/), in CvEMParams()
571 nclusters(_nclusters), cov_mat_type(_cov_mat_type), start_step(_start_step), in nclusters() function
575 int nclusters; member
622 virtual void kmeans( const CvVectors& train_data, int nclusters,