How do I create custom KeyPoints to compute SIFT?
I am using opencv-Python
I have identified Corner points using cv2.cornerHarris. The output is of type "dst"
I need to compute SIFT features of the corner points. The input to sift.compute() has to be of the type "KeyPoint"
I'm not able to figure out how to use cv2.KeyPoint()
How do I do this ?
Thanks :)
could you explain, why you are not using SIFT keypoints in that case ?
@berak: in some applications, it may be required to base on custom key points, e.g. face recognition