Saving Images

4 visualizzazioni (ultimi 30 giorni)
Tarik Razak
Tarik Razak il 13 Feb 2012
Hi I have following code that takes images and saves them, problem is that for each image i have to select the folder and file name to save it in. I am trying to give it path of the folder to save in and format and it saves them automatically ..any ideas how to do that? Thanks
figure for n=1:Ne [r,c] = find(L==n); n1=imagen(min(r):max(r),min(c):max(c)); h=imshow(~n1); imsave(h); pause(0.5) end

Risposte (1)

Image Analyst
Image Analyst il 13 Feb 2012
Why not use uiputfile and imwrite()?
% Get the name of the file that the user wants to save.
startingFolder = userpath
defaultFileName = fullfile(startingFolder, '*.*');
[baseFileName, folder] = uiputfile(defaultFileName, 'Specify a file');
if baseFileName == 0
% User clicked the Cancel button.
return;
end
fullFileName = fullfile(folder, baseFileName)
imwrite(yourImageMatrix, fullFileName );

Categorie

Scopri di più su File Operations in Help Center e File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by