Image registration in opencv
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.
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.
Asked: 2015-07-04 16:54:00 -0600
Seen: 228 times
Last updated: Jul 04 '15
A question about registration function in Opencv2.4.2
opencv_traincascade with same size negatives (as positives)
phase correlation for image registration(image stitching)
Does OpenCV provide Connected Component labeling method for binary image?
3d models from 2d image slices
Find image inside of another (corners detection?)
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.