Splitting criteria, used to choose optimal splits during a weak tree construction
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
Members
| Member name | Value | Description | |
|---|---|---|---|
| Default | 0 | Use the default criteria for the particular boosting method. [CvBoost::DEFAULT] | |
| Gini | 1 | Use Gini index. This is default option for Real AdaBoost; may be also used for Discrete AdaBoost. [CvBoost::GINI] | |
| Misclass | 3 | Use misclassification rate. This is default option for Discrete AdaBoost; may be also used for Real AdaBoost. [CvBoost::MISCLASS] | |
| Sqerr | 4 | Use least squares criteria. This is default and the only option for LogitBoost and Gentle AdaBoost.最小二乗基準を用いる. [CvBoost::SQERR] |
See Also