how to use reshape in matlab code example
Example: reshape image matlab
% Read image in current directory
I=imread('Flower.jpg');
% Resize read image into 128x128
b=imresize(I,[128 128]);
% Read image in current directory
I=imread('Flower.jpg');
% Resize read image into 128x128
b=imresize(I,[128 128]);