averaging images and subtracting one image from the other

6 visualizaciones (últimos 30 días)
Sumera Yamin
Sumera Yamin el 18 de Feb. de 2021
Comentada: Sumera Yamin el 18 de Feb. de 2021
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.

Respuesta aceptada

Matt J
Matt J el 18 de Feb. de 2021
Editada: Matt J el 18 de Feb. de 2021
For example,
setA=rand(256,256,10);
setB=rand(256,256,10);
imageA=mean(setA,3);
imageB=mean(setB,3);
result = imageB-imageA;
  3 comentarios
Matt J
Matt J el 18 de Feb. de 2021
Editada: Matt J el 18 de Feb. de 2021
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(___);

Iniciar sesión para comentar.

Más respuestas (0)

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by