How to superimpose multiple images and then save the figure?

8 vues (au cours des 30 derniers jours)
maaham banu
maaham banu le 29 Oct 2019
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
superimpose.JPG

Réponses (1)

Sai Bhargav Avula
Sai Bhargav Avula le 29 Oct 2019
Modifié(e) : Sai Bhargav Avula le 29 Oct 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 commentaires
Sai Bhargav Avula
Sai Bhargav Avula le 30 Oct 2019
Can you try the average code by replacing double with im2double
Sai Bhargav Avula
Sai Bhargav Avula le 30 Oct 2019
You can also try using the imfuse() function of the matlab

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Processing Toolbox dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by