~ubuntu-branches/ubuntu/precise/insighttoolkit/precise

« back to all changes in this revision

Viewing changes to Utilities/nifti/real_easy/nifti1_read_write.c

  • Committer: Bazaar Package Importer
  • Author(s): Steve M. Robbins
  • Date: 2008-05-31 12:07:29 UTC
  • mfrom: (3.1.3 intrepid)
  • Revision ID: james.westby@ubuntu.com-20080531120729-7g7layn480le43ko
Tags: 3.6.0-3
* debian/patches/gccxml-workaround.patch: New.  Work around gccxml issue
  with #include_next; c.f. http://www.gccxml.org/Bug/view.php?id=7134.  
* debian/patches/gcc43.patch: include <cstring> in itkNeighbourhood.h.
  This only showed up in the tcl wrapping step.

* Above two entries fix FTBFS for GCC 4.3-based systems.
  Closes: #478500.

* debian/patches/sharedforward.patch: New.  Ensure that linux/sparc
  systems are not also configured as a SUN sparc system, which requires
  SUN header sys/isa_defs.h.  Closes: #478940, #483312.

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 * example is for you.
9
9
 *
10
10
 * This code does not deal with wrong-endian data, compressed data,
11
 
 * the new qform/sform orientation codes, parsing filesnames, volume-
 
11
 * the new qform/sform orientation codes, parsing filenames, volume-
12
12
 * wise or timecourse-wise data access or any of a million other very useful
13
13
 * things that are in the niftilib i/o reference libraries.
14
14
 * We encourage people to use the niftilib reference library and send
50
50
 *      things like DT_UINT16.
51
51
 *
52
52
 * 5. other stuff
53
 
 *      nifti1 really does like the dim[0] field set to the number of
54
 
 *      dimensions of the dataset.  Other Analyze flavors might not
55
 
 *      have been so scrupulous about that.
56
 
 *      nifti1 has a bunch of other new fields such as intent codes,
57
 
 *      qform/sform, etc.  but, if you just want to get your hands on
58
 
 *      the data blob you can ignore these.
 
53
 *     nifti1 really does like the dim[0] field set to the number of
 
54
 *     dimensions of the dataset.  Other Analyze flavors might not
 
55
 *     have been so scrupulous about that.
 
56
 *     nifti1 has a bunch of other new fields such as intent codes,
 
57
 *     qform/sform, etc. but, if you just want to get your hands on
 
58
 *     the data blob you can ignore these.  Example use of these fields
 
59
 *     is in the niftilib reference libraries.
59
60
 *
60
61
 *
61
62
 *