importing an image into a variable from database
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how to browse and import an image into a variable.?
0 commentaires
Réponse acceptée
KSSV
le 5 Juin 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
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Database Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!