Image registration in opencv

asked 2015-07-04 16:54:00 -0600

I have a moving image and a fixed image. How can I register the moving image on top of fixed image? The transformation involves translation only.

edit retag flag offensive close merge delete

Comments

I think you need to find the common points between the two images with a feature extractor, and then use findHomography to map these point from one image to the other.

bjorn89 gravatar imagebjorn89 ( 2015-07-06 04:08:07 -0600 )edit