how to take image as a user input from folder?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
romasha
am 3 Feb. 2014
Beantwortet: waseem almuhtaseb
am 14 Feb. 2019
hi, i want to take an image from user as an input and selected/input image is saved to another new folder.. how can i do this?
0 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 3 Feb. 2014
You can use uigetfile and copyfile functions
3 Kommentare
Azzi Abdelmalek
am 3 Feb. 2014
Bearbeitet: Azzi Abdelmalek
am 3 Feb. 2014
ext='*.bmp'
folder='C:\Users\Romesha\Desktop\2';
image=uigetfile([folder '\' ext])
old_image=fullfile(folder,image)
copyfile(old_image,['C:\Users\Romesha\images\' image]);
Weitere Antworten (2)
waseem almuhtaseb
am 14 Feb. 2019
[path,~]=imgetfile();
Im=imread(path);
Im=im2double(Im);
0 Kommentare
Alex Taylor
am 3 Feb. 2014
Depending on your exact use case, I'd also recommend looking at the imsave and imputfile functions exposed by the Image Processing Toolbox.
0 Kommentare
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!