getimreadsupportedtypeslistfilterspec.m

来自「matlab aamtool box」· M 代码 · 共 27 行

M
27
字号
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 + =
减小字号Ctrl + -
显示快捷键?