RAW_OUTPUT 211 modules/ml/src/boost.cpp int predictFlags = bparams.boostType == Boost::DISCRETE ? (PREDICT_MAX_VOTE | RAW_OUTPUT) : PREDICT_SUM; RAW_OUTPUT 366 modules/ml/src/boost.cpp if( !(flags0 & RAW_OUTPUT) ) RAW_OUTPUT 310 modules/ml/src/nbayes.cpp bool rawOutput = (flags & RAW_OUTPUT) != 0; RAW_OUTPUT 150 modules/ml/src/rtrees.cpp int predictFlags = _isClassifier ? (PREDICT_MAX_VOTE + RAW_OUTPUT) : PREDICT_SUM; RAW_OUTPUT 1917 modules/ml/src/svm.cpp bool returnDFVal = (flags & RAW_OUTPUT) != 0; RAW_OUTPUT 1392 modules/ml/src/tree.cpp predictType = !_isClassifier || (classLabels.size() == 2 && (flags & RAW_OUTPUT) != 0) ? RAW_OUTPUT 1487 modules/ml/src/tree.cpp sum = (flags & RAW_OUTPUT) ? (float)best_idx : classLabels[best_idx]; RAW_OUTPUT 217 modules/ml/test/test_save_load.cpp model->predict(input, output, StatModel::RAW_OUTPUT | (isTree ? DTrees::PREDICT_SUM : 0)); RAW_OUTPUT 314 samples/cpp/letter_recog.cpp float s = model->predict( temp_sample, noArray(), StatModel::RAW_OUTPUT );