필터 지우기
필터 지우기

adding multiple images together from a for loop

조회 수: 5 (최근 30일)
Jack Sparrow
Jack Sparrow 2013년 7월 19일
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

채택된 답변

David Sanchez
David Sanchez 2013년 7월 19일
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
Jack Sparrow
Jack Sparrow 2013년 7월 19일
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 2013년 7월 19일
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.

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by