http://www.emgu.com
Create a flann index
Namespace:
Emgu.CV.Flann
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic Index(
IInputArray values,
IIndexParams ip,
DistType distType = DistType.Euclidean
)
Public Sub New (
values As IInputArray,
ip As IIndexParams,
Optional distType As DistType = DistType.Euclidean
)
public:
Index(
IInputArray^ values,
IIndexParams^ ip,
DistType distType = DistType::Euclidean
)
new :
values : IInputArray *
ip : IIndexParams *
?distType : DistType
(* Defaults:
let _distType = defaultArg distType DistType.Euclidean
*)
-> Index
Parameters
- values
- Type: Emgu.CVIInputArray
A row by row matrix of descriptors - ip
- Type: Emgu.CV.FlannIIndexParams
The index parameter - distType (Optional)
- Type: Emgu.CV.FlannDistType
The distance type
See Also