⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 getimreadsupportedtypeslistfilterspec.m

📁 matlab aamtool box
💻 M
字号:
function [filterSpec] = getImreadSupportedTypesListFilterSpec()
% function [filterSpec] = getImreadSupportedFilterSpec()
%
% Description:
% Returns the filterSpec listing all file types supported by function
% imread.
% 
% Author: Johann Strasser
% Date: 070312

filterSpec = {'*.bmp', 'Windows Bitmap (*.bmp)';
        '*.cur', 'Windows Cursor resource (*.cur)';
        '*.gif', 'Graphics Interchange Format (*.gif)';
        '*.hdf', 'Hierarchical Data Format (*.hdf)';
        '*.ico', 'Windows Icon resources (*.ico)';
        '*.jpg;*.jpeg', 'Joint Photographic Experts Group (*.jpg or *.jpeg)';
        '*.pbm', 'Portable Bitmap (*.pbm)';
        '*.pcx', 'Windows Paintbrush (*.pcx)';
        '*.pgm', 'Portable Graymap (*.pgm)';
        '*.png', 'Portable Network Graphics (*.png)';
        '*.pnm', 'Portable Anymap (*.pnm)';
        '*.ppm', 'Portable Pixmap (*.ppm)';
        '*.ras', 'Sun Raster (*.ras)';
        '*.tif;*.tiff', 'Tagged Image File Format (*.tif or *.tiff)';
        '*.xwd', 'X Windows Dump (*.xwd)';
        '*.*', 'All files (*.*)'
        };

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -