Image Stitching/Mosaicing
4 views (last 30 days)
Show older comments
Hi,
I'm trying to write a code with Matlab 7.7.0(R2008b) to automatically stitch 2 images with a common overlapping region together. I’m now able to detect overlapping region with “normxcorr2”. However, this with this method only overlapping region with no scale and rotation invariant could be detected.
My problem is, how do I detect the location of overlapping region that are scale and rotation invariant?
I need to know the scaling n rotational difference between 2 images so I could transform either 1 of the image be4 stitching both images together.
Thanks.
0 Comments
Answers (1)
David Young
on 28 May 2011
A common approach to this is to find distinctive features in each of the images, match them up on the basis of their local properties, and fit a suitable parametric transformation to the coordinates. A good place to start to find some methods might be to Google for papers on SIFT features, or have a look at David Lowe's autostitch (see http://www.cs.ubc.ca/~lowe/).
2 Comments
Walter Roberson
on 29 May 2011
You could look at the literature for "image registration" and pick one of the several hundreds of algorithms. For example there are algorithms based upon wavelet transforms.
See Also
Categories
Find more on Geometric Transformation and Image Registration in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!