importing an image into a variable from database

2 views (last 30 days)
how to browse and import an image into a variable.?

Accepted Answer

KSSV
KSSV on 5 Jun 2017
[filename, pathname] = ...
uigetfile({'*.jpg';'*.png';'*.tif';'*.bmp'},'File Selector'); % Include your extension
I = imread([pathname,filesep,filename]) ; % REad the file
imshow(I) ; % display the file

More Answers (0)

Community Treasure Hunt

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

Start Hunting!