How to superimpose multiple images and then save the figure?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
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
![data.JPG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/245377/data.jpeg)
![superimpose.JPG](https://www.mathworks.com/matlabcentral/answers/uploaded_files/245378/superimpose.jpeg)
0 Commenti
Risposte (1)
Sai Bhargav Avula
il 29 Ott 2019
Modificato: Sai Bhargav Avula
il 29 Ott 2019
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 Commenti
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!