I read some paper about LSH and I know that is used for solving the approximated k-NN problem. We can divide the algorithm in two parts:
Given a vector in
D
dimensions (whereD
is big) of any value, translate it with a set ofN
(whereN<<D
) hash functions to a binary vector inN
dimensions.Using hamming distance, apply some search technique on the set of given binary codes obtained from phase 1 to find the k-NN.
The keypoint is that computing the hamming distance for vectors in N
dimensions is fast using XOR.
Anyway, I have two questions:
Point 1. is still necessary if we use a binary descriptor, like ORB? Since ORB's descriptors are already binaries and we use the hamming distance for comparing them, why we should perform the first point?
How the conversion happens for images described by SIFT? Each SIFT descriptor is 128 bits and each image is described by a set of descriptors. So we have matrix
descX128
(wheredesc
is the number of descriptors used), while LSH usually accept as input a vector.