importing an image into a variable from database
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
how to browse and import an image into a variable.?
0 Commenti
Risposta accettata
KSSV
il 5 Giu 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
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Database Toolbox 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!