| MCvDTreeSplit Structure |
Namespace: Emgu.CV.ML.Structure
The MCvDTreeSplit type exposes the following members.
| Name | Description | |
|---|---|---|
| Order |
Get or Set the Order of this TreeSplit
| |
| Subset |
Get the bit array indicating the value subset in case of split on a categorical variable.
The rule is: if var_value in subset then next_node<-left else next_node<-right
|
| Name | Description | |
|---|---|---|
| Equals | (Inherited from ValueType.) | |
| Finalize | (Inherited from Object.) | |
| GetHashCode | (Inherited from ValueType.) | |
| GetType | (Inherited from Object.) | |
| MemberwiseClone | (Inherited from Object.) | |
| ToString | (Inherited from ValueType.) |
| Name | Description | |
|---|---|---|
| inversed |
When it equals to 1, the inverse split rule is used (i.e. left and right branches are exchanged in the expressions below)
| |
| next |
Pointer to the next split in the node split list
| |
| quality |
The split quality, a positive number. It is used to choose the best primary split, then to choose and sort the surrogate splits. After the tree is constructed, it is also used to compute variable importance
| |
| var_idx |
Index of the variable used in the split
|