saving an image in a specific folder
Mostrar comentarios más antiguos
Hello,
i'm trying to save an image to a specific folder, however when i save the image i would like to give it any name i want.
similar to saving a word document, and a dialogue box pops up and asks you where would you like the destination folder and the name of the file
Respuesta aceptada
Más respuestas (2)
Image Analyst
el 17 de Mayo de 2018
You can use imsave():
img = imread('peppers.png');
imshow(img); % Display image
[filename, user_canceled] = imsave();
Or else the longer way with uiputfile():
% Get the name of the file that the user wants to save.
% Note, if you're saving an image you can use imsave() instead of uiputfile().
startingFolder = userpath % Or "pwd" or wherever you want.
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(yourImage, fullFileName);
akshatha nayak
el 23 de Abr. de 2019
0 votos
How to take real world image of person eye and store it in mysql database and use that image for comparing with other image ?
1 comentario
Image Analyst
el 23 de Abr. de 2019
Start a new question with this, and BE SURE to add the database tag, and DatabaseToolbox product when you post it.
Categorías
Más información sobre Startup and Shutdown en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!