HierarchicalClusteringIndexParams Constructor |
http://www.emgu.com
Namespace:
Emgu.CV.Flann
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic HierarchicalClusteringIndexParams(
int branching = 32,
CenterInitType centersInit = CenterInitType.Random,
int trees = 4,
int leafSize = 100
)
Public Sub New (
Optional branching As Integer = 32,
Optional centersInit As CenterInitType = CenterInitType.Random,
Optional trees As Integer = 4,
Optional leafSize As Integer = 100
)
public:
HierarchicalClusteringIndexParams(
int branching = 32,
CenterInitType centersInit = CenterInitType::Random,
int trees = 4,
int leafSize = 100
)
new :
?branching : int *
?centersInit : CenterInitType *
?trees : int *
?leafSize : int
(* Defaults:
let _branching = defaultArg branching 32
let _centersInit = defaultArg centersInit CenterInitType.Random
let _trees = defaultArg trees 4
let _leafSize = defaultArg leafSize 100
*)
-> HierarchicalClusteringIndexParams
Parameters
- branching (Optional)
- Type: SystemInt32
branching - centersInit (Optional)
- Type: Emgu.CV.FlannCenterInitType
Center initialization method - trees (Optional)
- Type: SystemInt32
Trees - leafSize (Optional)
- Type: SystemInt32
Leaf Size
See Also