Click or drag to resize

DTreesSplit Structure

The class represents split in a decision tree.

Namespace:  OpenCvSharp.ML
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public struct Split

The DTreesSplit type exposes the following members.

Methods
  NameDescription
Public methodEquals
Indicates whether this instance and a specified object are equal.
(Inherited from ValueType.)
Public methodGetHashCode
Returns the hash code for this instance.
(Inherited from ValueType.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodToString
Returns the fully qualified type name of this instance.
(Inherited from ValueType.)
Top
Fields
  NameDescription
Public fieldC
The threshold value in case of split on an ordered variable.
Public fieldInversed
If not 0, then the inverse split rule is used (i.e. left and right branches are exchanged in the rule expressions below).
Public fieldNext
Index of the next split in the list of splits for the node
Public fieldQuality
The split quality, a positive number. It is used to choose the best split.
Public fieldSubsetOfs
Offset of the bitset used by the split on a categorical variable.
Public fieldVarIdx
Index of variable on which the split is created.
Top
See Also