Create a flann index using Kmeans
Namespace:
Emgu.CV.Flann
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
Parameters
- values
- Type: Emgu.CV..::.Matrix<(Of <(Single>)>)
A row by row matrix of descriptors
- branching
- Type: System..::.Int32
Branching factor (for kmeans tree), use 32 for default
- iterations
- Type: System..::.Int32
Max iterations to perform in one kmeans clustering (kmeans tree), use 11 for deafault
- centersInitType
- Type: Emgu.CV.Flann..::.CenterInitType
Algorithm used for picking the initial cluster centers for kmeans tree, use RANDOM for default
- cbIndex
- Type: System..::.Single
Cluster boundary index. Used when searching the kmeans tree. Use 0.2 for default
See Also