CvDTreeSplit Class OpenCvSharp Class Library
Decision tree node split
Inheritance Hierarchy

SystemObject
  OpenCvSharpCvObject
    OpenCvSharp.CPlusPlusCvDTreeSplit

Namespace:  OpenCvSharp.CPlusPlus
Assembly:  OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public class CvDTreeSplit : CvObject

The CvDTreeSplit type exposes the following members.

Constructors

  NameDescription
Public methodCvDTreeSplit
Initializes a new instance of the CvDTreeSplit class
Top
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
Methods

  NameDescription
Public methodEquals (Inherited from Object.)
Protected methodFinalize (Inherited from Object.)
Public methodGetHashCode (Inherited from Object.)
Public methodGetType (Inherited from Object.)
Protected methodMemberwiseClone (Inherited from Object.)
Public methodToString (Inherited from Object.)
Top
Fields

  NameDescription
Protected fieldptr
Data pointer
(Inherited from CvObject.)
Top
See Also

Reference