File: loadnifti.m

package info (click to toggle)
octave-iso2mesh 1.9.8%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 11,128 kB
  • sloc: cpp: 11,982; ansic: 10,158; sh: 365; makefile: 59
file content (21 lines) | stat: -rw-r--r-- 604 bytes parent folder | download | duplicates (2)
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{:});