removing seams after stitching two images
4 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
i stitched two images using featureless registration.. in the output stitched image containes seams.. can any one suggest a method to remove that..thanx in advance..
0 Commenti
Risposte (1)
Image Analyst
il 3 Mar 2012
I don't know how you stitched them together. If you just butted them together like stitchedImage = [image1 image2] you may have a bad seam. There are a variety of panoramic stitching algorithms that I think rely on jagged seams and anti aliasing to make seams invisible. You'll just have to do some research on that, on someplace like this: http://iris.usc.edu/Vision-Notes/bibliography/contentsmatch-pl.html#Registration,%20Matching%20and%20Recognition%20Using%20Points,%20Lines,%20Regions,%20Areas,%20Surfaces
2 Commenti
Image Analyst
il 3 Mar 2012
I'd make a weighting matrix, weights1, using linspace(). This would be for one image. Then flip it, say using fliplr() if you want to smooth vertical seams, to get weights2. Then you can construct the replacement smoothed matrix like this perhaps
seamlessImage = (weights1 .* single(image1) + weights2 .* single(image2))/2;
then cast back to the type of the original image, say uint8 if you need that.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!