Borrar filtros
Borrar filtros

importing an image into a variable from database

1 visualización (últimos 30 días)
hp
hp el 4 de Jun. de 2017
Comentada: hp el 5 de Jun. de 2017
how to browse and import an image into a variable.?

Respuesta aceptada

KSSV
KSSV el 5 de Jun. de 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

Más respuestas (0)

Community Treasure Hunt

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

Start Hunting!

Translated by