OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CV_ROW_SAMPLE
(Results
1 - 8
of
8
) sorted by null
/external/opencv/ml/src/
_ml.h
70
(( tflag ==
CV_ROW_SAMPLE
) \
ml_inner_functions.cpp
859
tflag ==
CV_ROW_SAMPLE
? train_data->cols : train_data->rows;
861
tflag ==
CV_ROW_SAMPLE
? train_data->rows : train_data->cols;
869
copy_data = tflag !=
CV_ROW_SAMPLE
|| var_idx || always_copy_data;
887
if( tflag !=
CV_ROW_SAMPLE
)
937
if( tflag !=
CV_ROW_SAMPLE
&& tflag != CV_COL_SAMPLE )
939
"Unknown training data layout (must be
CV_ROW_SAMPLE
or CV_COL_SAMPLE)" );
942
*var_all = tflag ==
CV_ROW_SAMPLE
? train_data->cols : train_data->rows;
945
*sample_all = tflag ==
CV_ROW_SAMPLE
? train_data->rows : train_data->cols;
[
all
...]
mlknearest.cpp
113
CV_CALL( cvPrepareTrainData( "CvKNearest::train", _train_data,
CV_ROW_SAMPLE
,
mlnbayes.cpp
127
_train_data,
CV_ROW_SAMPLE
, _responses, CV_VAR_CATEGORICAL,
mlsvm.cpp
[
all
...]
mlem.cpp
322
_samples,
CV_ROW_SAMPLE
, 0, CV_VAR_CATEGORICAL,
[
all
...]
mltree.cpp
193
if( _tflag ==
CV_ROW_SAMPLE
)
[
all
...]
/external/opencv/ml/include/
ml.h
126
#define
CV_ROW_SAMPLE
1
128
#define CV_IS_ROW_SAMPLE(flags) ((flags) &
CV_ROW_SAMPLE
)
[
all
...]
Completed in 287 milliseconds