Package mvpa :: Package atlases
[hide private]
[frames] | no frames]

Source Code for Package mvpa.atlases

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Import helper for PyMVPA anatomical atlases 
10   
11  Module Organization 
12  =================== 
13  mvpa.atlases module contains support for various atlases 
14   
15  .. packagetree:: 
16     :style: UML 
17   
18  :group Base Implementations: base 
19  :group Atlases from FSL: fsl 
20  :group Helpers: warehouse transformation 
21  """ 
22   
23  __docformat__ = 'restructuredtext' 
24   
25   
26  if __debug__: 
27      from mvpa.base import debug 
28      debug('INIT', 'mvpa.atlases') 
29   
30  from mvpa.atlases.base import LabelsAtlas, ReferencesAtlas, XMLAtlasException 
31  from mvpa.atlases.fsl import FSLProbabilisticAtlas 
32  from mvpa.atlases.warehouse import Atlas, KNOWN_ATLASES, KNOWN_ATLAS_FAMILIES 
33   
34  if __debug__: 
35      debug('INIT', 'mvpa.atlases end') 
36