Saving Images

2 visualizaciones (últimos 30 días)
Tarik Razak
Tarik Razak el 13 de Feb. de 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

Respuestas (1)

Image Analyst
Image Analyst el 13 de Feb. de 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 );

Categorías

Más información sobre File Operations en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by