Package nifti
[hide private]
[frames] | no frames]

Source Code for Package nifti

 1  #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  #ex: set sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyNIfTI package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Python bindings to the NIfTI data format 
10   
11   
12  Package Organization 
13  ==================== 
14   
15  The nifti package contains the following subpackages and modules: 
16   
17  .. packagetree:: 
18     :style: UML 
19   
20  :author: `Michael Hanke <michael.hanke@gmail.com>`__ 
21  :requires: Python 2.4+ 
22  :version: 0.20081017.1 
23  :see: `The PyNIfTI webpage <http://niftilib.sf.net/pynifti>`__ 
24  :see: `GIT Repository Browser <http://git.debian.org/?p=pkg-exppsy/pynifti.git>`__ 
25   
26  :license: The MIT License 
27  :copyright: |copy| 2006-2008 Michael Hanke <michael.hanke@gmail.com> 
28   
29  :newfield contributor: Contributor, Contributors (Alphabetical Order) 
30  :contributor: `Yaroslav Halchenko <debian@onerussian.com>`__ 
31   
32  .. |copy| unicode:: 0xA9 .. copyright sign 
33  """ 
34   
35  __docformat__ = 'restructuredtext' 
36   
37   
38  from niftiimage import NiftiImage 
39