Machine Vision problem - Photo matching. Is a solution possible / known, using OpenCV?

杀马特。学长 韩版系。学妹 提交于 2019-12-06 05:37:49

You need to compute the homography between the images which needs point correspondences such as SURF interest points.

Once you have the homography, you can do a projective transformation of the images so that they match up. Following that, you can try some sort of blending at the seams to make it look seamless.

This paper describes it pretty well. You can replace the Multi-scale Oriented Patches used by Szeliski with SURF interest points. Here are some more resources to get you started:

  1. CMU Lecture on homography and mosaics
  2. Same thing with a bit about feathering
  3. Detailed PPT
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!