Azzera filtri
Azzera filtri

adding multiple images together from a for loop

5 visualizzazioni (ultimi 30 giorni)
I am trying to adding multiple images together into one in a for loop, but seem to only display the last image. This is what I've tried. Someone please assist me.
E = [];
for i = 1:4
str = int2str(i);
str = strcat('\',str,'.jpg');
str = strcat('C:\Users\ASUSA55V\Documents\MATLAB\images\ur3', str);
im = imread(str);
im = imresize(im,[64 70]);
E = im;
E = E+E(i);
end
imshow(E);
Thanks

Risposta accettata

David Sanchez
David Sanchez il 19 Lug 2013
Try this out:
E = [];
for i = 1:4
str = int2str(i);
str = strcat('\',str,'.jpg');
str = strcat('C:\Users\ASUSA55V\Documents\MATLAB\images\ur3', str);
im = imread(str);
im = imresize(im,[64 70]);
E = E + im;
end
imshow(E);
  3 Commenti
Jack Sparrow
Jack Sparrow il 19 Lug 2013
Thank you david, but I'm gettin this error:
Error using +
Matrix dimensions must agree.
Error in Untitled2 (line 12)
E = E + im;
but, when I tried to change the code to
E = [];
for i = 1:4
str = int2str(i);
str = strcat('\',str,'.jpg');
str = strcat('C:\Users\ASUSA55V\Documents\MATLAB\images\ur3', str);
im = imread(str);
im = imresize(im,[64 70]);
E = im; %%%%I added this to the code
E = E + im;
end
imshow(E);
It seem to be showing only the last image. I want it to include information from all the combined images.
David Sanchez
David Sanchez il 19 Lug 2013
By the way, what do you want to do? When adding images like that, you will not save the information of the images, you'll add them up and you will end with a very white image.

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Display Image in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by