Effacer les filtres
Effacer les filtres

How to add two binay images and add the result to a third image?

2 vues (au cours des 30 derniers jours)
Meshooo
Meshooo le 18 Août 2014
Commenté : Image Analyst le 19 Août 2014
Dear all,
I have one array that includes 5 binary images [I1, I2, I3, I4, I5].
I want to have a new array [R1, R2, R3, R4] where:
R1 = I1 + I2
R2 = R1 + I3
R3 = R2 + I4
R4 = R3 + I5
How to make a for loop for that?
Any help will be very appreciated.
Thank you very much.
Meshoo

Réponse acceptée

Image Analyst
Image Analyst le 18 Août 2014
Try this:
R1 = int32(I1) + int32(I2);
R2 = R1 + int32(I3);
R3 = R2 + int32(I4);
R4 = R3 + int32(I5);
output_R = [R1, R2, R3, R4];
imshow(output_R, []); % The [] are important.
  8 commentaires
Meshooo
Meshooo le 19 Août 2014
Modifié(e) : Meshooo le 19 Août 2014
Thank you very much. Your program will add all the binary images, but actually I want the flow of the program to be in the same way I explained before, because I am doing other operations (adding the binary was just an example).
So how to make a new array R[ ] that contains four binary images R1, R2, R3, R4.
R1 = I1 + I2
R2 = R1 + I3 % do something
R3 = R2 + I4
R4 = R3 + I5
Image Analyst
Image Analyst le 19 Août 2014
Not a good idea. Remember you said "Sometimes I have 100, 120, etc." So now I refer you to the FAQ about why this is a bad idea: http://matlab.wikia.com/wiki/FAQ#How_can_I_create_variables_A1.2C_A2.2C....2CA10_in_a_loop.3F

Connectez-vous pour commenter.

Plus de réponses (1)

Ahmet Cecen
Ahmet Cecen le 18 Août 2014
Here is how to make a loop for that:
R(:,1)=I(:,1)+I(:,2); %Initialization
for i=2:4
R(:,i)=R(:,i-1)+I(:,i+1); %This is the loop that you asked for.
end
  5 commentaires
Meshooo
Meshooo le 18 Août 2014
Thank you all for your comments. Is there some way to do it directly without any reshaping?
Image Analyst
Image Analyst le 18 Août 2014
Yes. Did you read our comments about what information is required?

Connectez-vous pour commenter.

Community Treasure Hunt

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

Start Hunting!

Translated by