I am studying a quick search for NN in multidimensional vectors. (Similar to searching for similar images after selecting and calculating feature vectors)
I am currently using ORB , which describes its key points with a bit string.
A Hamming distance is required to compare two ORB descriptors.
I read taht LSH calculates its hash tables based on Eucliand Distance (L2) or Manathann distance (L1). Does this mean that LSH isn't option for comparing vectors that need Hamming distances?
Edit
LSH can work with distance from hamming because it creates a hash table based on substrings in string bit strings, therefore it works
source share