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

Source Code for Package mvpa.atlases

 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 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: BaseAtlas XMLBasedAtlas Label Level LabelsLevel 
19  :group Talairach: RumbaAtlas LabelsAtlas ReferencesAtlas 
20  :group Atlases from FSL: FSLAtlas FSLProbabilisticAtlas 
21  :group Exceptions: XMLAtlasException 
22  """ 
23   
24  __docformat__ = 'restructuredtext' 
25   
26   
27  if __debug__: 
28      from mvpa.base import debug 
29      debug('INIT', 'mvpa.atlases') 
30   
31  from mvpa.atlases.base import LabelsAtlas, ReferencesAtlas, XMLAtlasException 
32  from mvpa.atlases.fsl import FSLProbabilisticAtlas 
33  from mvpa.atlases.warehouse import Atlas, KNOWN_ATLASES, KNOWN_ATLAS_FAMILIES 
34   
35  if __debug__: 
36      debug('INIT', 'mvpa.atlases end') 
37