Mostrar comentarios más antiguos
I have to get an image address through the Edit Box in the GUI. then, i want to read the image on that address using the imread function. how to do it?
Address is of the form C:\Users\user\Documents\MATLAB\xyz.png
Respuesta aceptada
Más respuestas (1)
Walter Roberson
el 5 de Jun. de 2012
filename = get(handles.EDITBOXTAG, 'String'); %adjust EDITBOXTAG as needed
theimage = imread(filename);
2 comentarios
Shree Nath
el 5 de Jun. de 2012
Walter Roberson
el 5 de Jun. de 2012
theimage = imread(filename{1});
Categorías
Más información sobre Convert Image Type en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!