I had a previous doubt on Overlaying one image on another gives blue boxes instead of image - MATLAB which has been solved, but partially.
The images are getting overlayed, as expected, but how can I set the position of these overlayed images on the original image?
Here is the code so far.
figure;
imshow(FirstImage);
hold on;
h = imshow(SecondImage);
set(h,'AlphaData',0.2);
hold off;