|
KDTreeT Constructor (Int32, KDTreeNodeT, Int32, Int32)
|
Namespace:
Accord.Collections
Assembly:
Accord.MachineLearning (in Accord.MachineLearning.dll) Version: 3.8.0
Syntax public KDTree(
int dimension,
KDTreeNode<T> Root,
int count,
int leaves
)
Public Sub New (
dimension As Integer,
Root As KDTreeNode(Of T),
count As Integer,
leaves As Integer
)
Request Example
View SourceParameters
- dimension
- Type: SystemInt32
The number of dimensions in the tree. - Root
- Type: Accord.CollectionsKDTreeNodeT
The Root node, if already existent. - count
- Type: SystemInt32
The number of elements in the Root node. - leaves
- Type: SystemInt32
The number of leaves linked through the Root node.
See Also