How to superimpose multiple images and then save the figure?
12 次查看(过去 30 天)
显示 更早的评论
This is the data set I have and I want to superimpose all of these images to achieve one image (refer second image).
P.S I have MATLAB 2015
0 个评论
回答(1 个)
Sai Bhargav Avula
2019-10-29
编辑:Sai Bhargav Avula
2019-10-29
Hi, The link below explains in detailed
Or
You can average them to achieve the desired result.
sumImage = double(image1)+ double(image2)+ double(image3)+ double(image4) + ...... etc.
meanImage = sumImage / numberOfImages;
3 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Image Processing Toolbox 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!