Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

i am doing small matlab code where have to open a directory and then select image from there , the selected image has to be stored in a variable I i have loaded directory using

  [mat, dirc] = uigetfile('*.png', 'Select a  file');

image is loaded loaded in matlab like this

enter image description here

i want "selected image to be saved in a variable".
Please help me to do it .

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
281 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can read the image file

img = imread( fullfile(dirc, mat) );

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...