averaging images and subtracting one image from the other

조회 수: 5 (최근 30일)
Sumera Yamin
Sumera Yamin 2021년 2월 18일
댓글: Sumera Yamin 2021년 2월 18일
Hi, I have a basic image processing question. I am dealing with two sets of images. Lets say image A (average of 10 image sets) and image B (average of 10 image sets). How do I do the average of 10 images to get image A and B and then subtract image A from image B. Many thanks for any leads.

채택된 답변

Matt J
Matt J 2021년 2월 18일
편집: Matt J 2021년 2월 18일
For example,
setA=rand(256,256,10);
setB=rand(256,256,10);
imageA=mean(setA,3);
imageB=mean(setB,3);
result = imageB-imageA;
  댓글 수: 3
Matt J
Matt J 2021년 2월 18일
편집: Matt J 2021년 2월 18일
what does 3 mean in mean (setA, 3).
It means take mean of all the slices setA(:,:,i).
Also i am reading the images from some file. I am not sure, how would i implement this code.
Read the images into an MxNx10 array, e.g., by doing,
setA(:,:,i)=imread(___);

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

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by