CvDTreeSplit Properties OpenCvSharp Class Library

The CvDTreeSplit type exposes the following members.

Properties

  NameDescription
Public propertyCvPtr
Native pointer of OpenCV structure
(Inherited from CvObject.)
Public propertyInversed
When true, the inverse split rule is used (i.e. left and right branches are exchanged in the expressions below)
Public propertyNext
Pointer to the next split in the node split list.
Public propertyOrdC
The threshold value in case of split on an ordered variable. The rule is: if var_value < c then next_node<-left else next_node<-right
Public propertyOrdSplitPoint
Used internally by the training algorithm.
Public propertyQuality
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.
Public propertySubset
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
Public propertyVarIdx
Index of the variable used in the split
Top
See Also

Reference