Please help me to solve this problem!. I have to design four images flickering at different frequencies and spacing between images are 2.5cm.
S = imread(‘rose.jpeg’); % read the image from files
A = imresize(S,[183,275]); % resize image
subplot(221); % to make 2 by 2 matrix of pictures
imshow(A); % display the image
B = imread(‘lotus.jpeg’);
subplot(222);
imshow(B);
T = imread(‘lily.jpeg’) ;
C = imresize(T,[183,275]);
subplot(223);
imshow(C);
D = imread(‘orchid.jpeg’);
subplot(224);
imshow(D);
% imfinfo("Lily.jpeg")
% imfinfo("rose.jpeg")
% imfinfo("lotus.jpeg")
% imfinfo("orchid.jpeg")S = imread(‘rose.jpeg’); % read the image from files
A = imresize(S,[183,275]); % resize image
subplot(221); % to make 2 by 2 matrix of pictures
imshow(A); % display the image
B = imread(‘lotus.jpeg’);
subplot(222);
imshow(B);
T = imread(‘lily.jpeg’) ;
C = imresize(T,[183,275]);
subplot(223);
imshow(C);
D = imread(‘orchid.jpeg’);
subplot(224);
imshow(D);
% imfinfo("Lily.jpeg")
% imfinfo("rose.jpeg")
% imfinfo("lotus.jpeg")
% imfinfo("orchid.jpeg") S = imread(‘rose.jpeg’); % read the image from files
A = imresize(S,[183,275]); % resize image
subplot(221); % to make 2 by 2 matrix of pictures
imshow(A); % display the image
B = imread(‘lotus.jpeg’);
subplot(222);
imshow(B);
T = imread(‘lily.jpeg’) ;
C = imresize(T,[183,275]);
subplot(223);
imshow(C);
D = imread(‘orchid.jpeg’);
subplot(224);
imshow(D);
% imfinfo("Lily.jpeg")
% imfinfo("rose.jpeg")
% imfinfo("lotus.jpeg")
% imfinfo("orchid.jpeg") image processing, frequency MATLAB Answers — New Questions