1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
function varargout = loadnifti (varargin)
%
% jnii=loadnifti(filename)
% or
% nii=loadnifti(filename,option)
%
% Read a NIfTI-1/2 (*.nii/.nii.gz) or Analyze 7.5 (*.hdr/*.img/.hdr.gz/.img.gz)
% image file.
%
% author: Qianqian Fang (q.fang <at> neu.edu)
%
% Please run `help nii2jnii` to see the input output outputs.
% This function is an alias to nii2jnii
%
%
% this file is part of JNIfTI specification: https://github.com/NeuroJSON/jnifti
%
% License: Apache 2.0, see https://github.com/NeuroJSON/jnifti for details
%
[varargout{1:nargout}] = nii2jnii(varargin{:});
|