enum cv::ml::Boost::Types
Overview
Boosting type. Moreā¦
#include <ml.hpp> enum Types { DISCRETE =0, REAL =1, LOGIT =2, GENTLE =3, };
Detailed Documentation
Boosting type. Gentle AdaBoost and Real AdaBoost are often the preferable choices.
Enum Values
DISCRETE
Discrete AdaBoost.
REAL
Real AdaBoost. It is a technique that utilizes confidence-rated predictions and works well with categorical data.
LOGIT
LogitBoost. It can produce good regression fits.
GENTLE
Gentle AdaBoost. It puts less weight on outlier data points and for that reason is often good with regression data.