MATLAB: What should i do to make both images of same size

image size

lena.jpg image is having value 256*256 uint8 while kssk.jpg is having value 225*225*3 uint8. i want image of value 256*256 uint8,how to make it same or anyone is having pls attach sample

Best Answer

im = imread('kssk.jpg');
newIm = rgb2gray(imresize(im, [256, 256]));
Related Question