Click or drag to resize

LshIndexParams Constructor (Int32, Int32, Int32)

Initializes a new instance of the LshIndexParams class

Namespace:  OpenCvSharp.Flann
Assembly:  OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax
public LshIndexParams(
	int tableNumber,
	int keySize,
	int multiProbeLevel
)

Parameters

tableNumber
Type: SystemInt32
The number of hash tables to use (between 10 and 30 usually).
keySize
Type: SystemInt32
The size of the hash key in bits (between 10 and 20 usually).
multiProbeLevel
Type: SystemInt32
The number of bits to shift to check for neighboring buckets (0 is regular LSH, 2 is recommended).
See Also