| LshIndexParams Constructor (Int32, Int32, Int32) |
Namespace:
OpenCvSharp.Flann
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public LshIndexParams(
int tableNumber,
int keySize,
int multiProbeLevel
)
Public Sub New (
tableNumber As Integer,
keySize As Integer,
multiProbeLevel As Integer
)
public:
LshIndexParams(
int tableNumber,
int keySize,
int multiProbeLevel
)
new :
tableNumber : int *
keySize : int *
multiProbeLevel : int -> LshIndexParams
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