Align images in opencv

后端 未结 3 1462
后悔当初
后悔当初 2020-12-29 08:29

I have images of same scene focused at different distances. I want to align the images such that every feature is in exactly same position in every image. How can i do this

3条回答
  •  独厮守ぢ
    2020-12-29 08:53

    The basic idea is to in-plane rotate the images and its 2D translation in X and Y directions to based on their matched feature points.

    Check out Image Alignment Algorithms where you can find two approaches to do this using OpenCV (with code).

提交回复
热议问题