clc
clear;
%First Get "Canvas" Image.
im = imread('Mainpage.png');
imshow(im),title('Original Image')
subplot(2,2,1)
imshow(im);
b=imread('Fridgelist.png');
subplot(2,2,2)
imshow(b)
c=imread('FridgesFreezers.png');
subplot(2,2,3)
imshow(c)
I=imread('fluenciatable.jpg');
subplot(2,2,4)
imshow(I)
% display the image
mainCatalogImg = image(X);
% turn off the axis and markers
axis off
% scale the axis to the image size
axis image;
% the exit ICON upper left corner X and Y, as well as the button height and
% widths
exitIconX = 845;
exitIconY = 10;
exitIconWidth = 140;
exitIconHeight = 30;
% These values relate only to the icons
Continue reading...