LshIndexParamses Constructor |
http://www.emgu.com
Namespace: Emgu.CV.FlannAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic LshIndexParamses(
int tableNumber,
int keySize,
int multiProbeLevel
)
Public Sub New (
tableNumber As Integer,
keySize As Integer,
multiProbeLevel As Integer
)
public:
LshIndexParamses(
int tableNumber,
int keySize,
int multiProbeLevel
)
new :
tableNumber : int *
keySize : int *
multiProbeLevel : int -> LshIndexParamses
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