Ask Your Question

mikecmpbll's profile - activity

2018-08-27 18:20:56 -0600 received badge  Notable Question (source)
2015-12-14 22:52:53 -0600 received badge  Popular Question (source)
2013-04-21 13:19:14 -0600 received badge  Scholar (source)
2013-04-15 06:24:36 -0600 commented answer SIFT descriptors with Harris corner detector

I'll give this a go this evening, it seems simple!

2013-04-15 06:23:57 -0600 received badge  Supporter (source)
2013-04-14 14:09:53 -0600 asked a question SIFT descriptors with Harris corner detector

Hi, I'm attempting to do the following:

  • Find Harris corners in two images
  • Extract SIFT descriptors for those keypoints
  • Match keypoints
  • Calculate homography using RANSAC
  • Apply the homography to the second image, so that if the two images were on top of one another, their features would be aligned.

I'm struggling on the 2nd point, how can I use cornerHarris() and produce descriptors in order to calculate a homography? I don't necessarily have to use Harris corners or SIFT, but I've read that it's fast. I'm basically just trying to align the images as best I can.