How to superimpose multiple images and then save the figure?

조회 수: 12 (최근 30일)
maaham banu
maaham banu 2019년 10월 29일
댓글: Sai Bhargav Avula 2019년 10월 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
data.JPG
superimpose.JPG

답변 (1개)

Sai Bhargav Avula
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
Sai Bhargav Avula
Sai Bhargav Avula 2019년 10월 30일
Can you try the average code by replacing double with im2double
Sai Bhargav Avula
Sai Bhargav Avula 2019년 10월 30일
You can also try using the imfuse() function of the matlab

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Image Processing Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by