Matlab Read Image
I=imread('cell1.jpg'); % Load the image file and store it as the variable I.
whos % Type "whos" in order to find out the size and class of all stored variables.
save I % Save the variable I.
ls % List the files in your directory.
% There should now be a file named "I.mat" in you directory
% containing your variable I.
whos % Type "whos" in order to find out the size and class of all stored variables.
save I % Save the variable I.
ls % List the files in your directory.
% There should now be a file named "I.mat" in you directory
% containing your variable I.
initial
ReplyDelete