HierarchicalClusteringIndexParams Constructor |
http://www.emgu.com
Namespace:
Emgu.CV.Flann
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
Syntaxpublic HierarchicalClusteringIndexParams(
int branching = 32,
CenterInitType centersInit = 0,
int trees = 4,
int leafSize = 100
)
Public Sub New (
Optional branching As Integer = 32,
Optional centersInit As CenterInitType = 0,
Optional trees As Integer = 4,
Optional leafSize As Integer = 100
)
public:
HierarchicalClusteringIndexParams(
int branching = 32,
CenterInitType^ centersInit = 0,
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 0
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