Image File Get/Put Dialog Boxes
Contains two functions: UIGETIMFILE and UIPUTIMFILE
As their name suggests, they wraps the standard UIGETFILE and UIPUTFILE functions; the FILTERSPEC parameter in the standard functions is automatically set to browse only MATLAB supported image files according to IMFORMATS function.
Also, the third output parameter is changed to IMFORMAT which is the IMFORMATS entry that corresponds to the selected file (extension). It gives a quick access to ISA/INFO/READ/WRITE functions specific to the selected image format.
Examples:
[filename,pathname,imformat] = uigetimfile('Pick an image file');
[filename,pathname,imformat] = uiputimfile('Save as');
% to use a subset of supported image format
[filename,pathname,imformat] = uigetimfile([1 4 8], 'Pick an image file');
[filename,pathname,imformat] = uiputimfile([1 4 8], 'Save as');
% [1 4 8] are the index to IMFORMATS returning structure.
% In R2009A Windows release, these indexes correspond to BMP, GIF, and JPEG formats.
Cita come
Kesh Ikuma (2024). Image File Get/Put Dialog Boxes (https://www.mathworks.com/matlabcentral/fileexchange/25814-image-file-get-put-dialog-boxes), MATLAB Central File Exchange. Recuperato .
Compatibilità della release di MATLAB
Compatibilità della piattaforma
Windows macOS LinuxCategorie
Tag
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Scopri Live Editor
Crea script con codice, output e testo formattato in un unico documento eseguibile.