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!