LogisticRegression 1467 modules/ml/include/opencv2/ml.hpp CV_WRAP static Ptr<LogisticRegression> create(); LogisticRegression 70 modules/ml/src/lr.cpp norm = LogisticRegression::REG_L2; LogisticRegression 71 modules/ml/src/lr.cpp train_method = LogisticRegression::BATCH; LogisticRegression 84 modules/ml/src/lr.cpp class LogisticRegressionImpl : public LogisticRegression LogisticRegression 124 modules/ml/src/lr.cpp Ptr<LogisticRegression> LogisticRegression::create() LogisticRegression 190 modules/ml/src/lr.cpp if(this->params.train_method == LogisticRegression::BATCH) LogisticRegression 206 modules/ml/src/lr.cpp if(this->params.train_method == LogisticRegression::BATCH) LogisticRegression 330 modules/ml/src/lr.cpp if(this->params.norm == LogisticRegression::REG_L1) LogisticRegression 584 modules/ml/src/lr.cpp if(this->params.train_method == LogisticRegression::MINI_BATCH) LogisticRegression 606 modules/ml/src/lr.cpp if(this->params.train_method == LogisticRegression::MINI_BATCH) LogisticRegression 99 modules/ml/test/test_lr.cpp Ptr<LogisticRegression> p = LogisticRegression::create(); LogisticRegression 102 modules/ml/test/test_lr.cpp p->setRegularization(LogisticRegression::REG_L2); LogisticRegression 103 modules/ml/test/test_lr.cpp p->setTrainMethod(LogisticRegression::BATCH); LogisticRegression 162 modules/ml/test/test_lr.cpp Ptr<LogisticRegression> lr1 = LogisticRegression::create(); LogisticRegression 165 modules/ml/test/test_lr.cpp lr1->setRegularization(LogisticRegression::REG_L2); LogisticRegression 166 modules/ml/test/test_lr.cpp lr1->setTrainMethod(LogisticRegression::BATCH); LogisticRegression 182 modules/ml/test/test_lr.cpp Ptr<LogisticRegression> lr2 = Algorithm::load<LogisticRegression>(filename); LogisticRegression 138 samples/cpp/logistic_regression.cpp Ptr<LogisticRegression> lr1 = LogisticRegression::create(); LogisticRegression 141 samples/cpp/logistic_regression.cpp lr1->setRegularization(LogisticRegression::REG_L2); LogisticRegression 142 samples/cpp/logistic_regression.cpp lr1->setTrainMethod(LogisticRegression::BATCH); LogisticRegression 167 samples/cpp/logistic_regression.cpp Ptr<LogisticRegression> lr2 = StatModel::load<LogisticRegression>(saveFilename);