I have a problem with matching the interests points that I have found with harris detector.
I didn't use the built-in functions of harrisDetector in opencv. Instead, I wrote the algorithm.
So, I ended up with the interest points, but I don't know how to describe these x,y coordinate sets with opencv built-in descriptors.
Does anyone know how to describe these interest points of given coordinate sets of an image?
Here's what I tried:
I converted my interest points to keyPoints
keyPoints.push_back(KeyPoint(InterestPoints[i].x, InterestPoints[i].y, 0.0));
Using Surf descriptor
SurfDescriptorExtractor extractor; Mat descriptors_1; extractor.compute(src_orig, keyPoints, descriptors_1);
But it didn't help me very much. Every time I run the code, it resets my varible keyPoints and gives me nothing.
Thanks for any comments.