In this tutorial you will learn how to add two images. Yes it is possible in MATLAB. You can add i.e. superimpose two images. Following are the steps to add two images using MATLAB image processing:
The only requirement for superimposition (or addition) of two images is that, the two matrix that you have defined for two images should have same size (as we know MATLAB is totally works with matrices and the addition of two matrices is possible only when they are of same size).
(These are two images that I have chosen, but for your case it may be different. For copying the image path visit my previous post)
MATLAB Program for Addition of Two Images:
%Addition of two images
%Created by : myclassbook.org (mayuresh)
%Created on : 21 May 2013
A=imread('H:New photorock 1.jpg'); %define A as a first image
B=imread('H:New photoImagesPhoto1561.jpg'); %define B as a second image
C=imresize(A,[400 400]); % image resize of A as 400*400 matrix
D=imresize(B,[400 400]); % image resize of B as 400*400 matrix
E=imadd(C,D); % image addtion of C and D
imshow(E) % display of image E
If you like this article, please share it with your friends and like or facebook page for future updates. Subscribe to our newsletter to get notifications about our updates via email. If you have any queries, feel free to ask in the comments section below. Have a nice day!