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

📄 hdfwrite.m

📁 有关matlab的电子书籍有一定的帮助希望有用
💻 M
字号:
function hdfwrite(varargin)
%HDFWRITE Write data to HDF file.
%   Note: HDFWRITE has been grandfathered; use IMWRITE instead.
%
%   HDFWRITE(I,'filename') writes the binary or intensity 
%   image I to an HDF file.
%
%   HDFWRITE(X,MAP,'filename') writes an indexed image X and
%   its colormap MAP to an HDF file.
%
%   HDFWRITE(R,G,B,'filename') writes an RGB image to
%   an HDF file.
%
%   Images are always written to the file in append mode.
%
%   See also IMFINFO, IMREAD, IMWRITE.

%   Author: J.M. Winograd        7-93
%   updated to call IMWRITE, Chris Griffin 8/18/96
%   Copyright 1993-1998 The MathWorks, Inc.  All Rights Reserved.
%   $Revision: 5.7 $  $Date: 1997/11/24 15:35:07 $

nargs = length(varargin);

for i=1:nargs,
    if isa(varargin{i}, 'uint8')
        error('HDFWRITE doesn''t support uint8 inputs, use IMWRITE.');
    end
end

filename = varargin{end};

if ~isstr(filename)
    error( 'FILENAME must be a string.' );
end

if (isempty(findstr(filename,'.'))==1)
    filename=[filename,'.hdf'];
end;

switch nargs
  case 2,  % Intensity (Grayscale) Image
      imwrite(varargin{1},filename,'hdf');
  case 3,  % Indexed Image
      imwrite(varargin{1},varargin{2},filename,'hdf');
  case 4,  % RGB Truecolor image
      RGB = cat(3,varargin{1},varargin{2},varargin{3});
      imwrite(RGB,filename,'hdf');
  otherwise,
      error('Invalid input arguments');
end


⌨️ 快捷键说明

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