code to choose an image from a folder

1 visualizzazione (ultimi 30 giorni)
hello i tried the following code
path = 'c:\users\userName\my documents\matlab';
filter = '*.bmp';
selectedFile = uigetfile(fullfile(path , filter));
imshow(selectedFile)
iam not able to display the image. please help.
thank you

Risposta accettata

Chad Greene
Chad Greene il 15 Mar 2017
Try
I = imread(selectedFile);
imshow(I)

Più risposte (0)

Categorie

Scopri di più su Images 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