I want to store a processed image at another location(hard drive)rather than displaying on MATLAB figure window
Use fullfile() to create your fullfilename:
fullFileName = fullfile(yourDesiredFolder, yourBaseImageFileName);
Then use imwrite() to write it out:
imwrite(yourImageArray, fullFileName);
0 Comments