how to get processed image at another location than MATLAB figure window

Asked by Niraj Rajput on 2 Feb 2013
Latest activity Answered by Image Analyst on 2 Feb 2013

I want to store a processed image at another location(hard drive)rather than displaying on MATLAB figure window

0 Comments

Niraj Rajput

2 Answers

Answer by Daniell Algar on 2 Feb 2013
doc imrwrite

0 Comments

Daniell Algar
Answer by Image Analyst on 2 Feb 2013

Use fullfile() to create your fullfilename:

fullFileName = fullfile(yourDesiredFolder, yourBaseImageFileName);

Then use imwrite() to write it out:

imwrite(yourImageArray, fullFileName);

0 Comments

Image Analyst

Contact us