I am trying to use OpenCV(2.4.6.0) to retrieve descriptors from key points that I have provided.
So far, I have not been successful...
l, des = surf.detectAndCompute(self.gray,None,useProvidedKeypoints = True)
where l
is an array of feature points. I am not sure where to input the key points I already have...
Would anyone know how I can go about doing this with either SIFT or SURF?
Thank you for your help!