bids_atlas.datasets.get_Talairach

bids_atlas.datasets.get_Talairach(target_space=None, resolution=None, level='gyrus', path=None)[source]

Download the Talairach atlas in specified target space and resolution, providing it in a BIDS-Atlas compliant manner.

Parameters:
  • target_space (string) – Target space the atlas should be provided in. If None, the atlas will be provided in MNI152NLin6Asym. Default = None.

  • resolution (string) – Resolution the atlas should be provided in. If None, the atlas will be provided in 2mm resolution. Default = None.

  • level (string) – Level the atlas should be provided in. If None, the atlas will be provided based on gyri. Default = ‘gyrus’.

  • path (string) – Path where the atlas will be saved. If None, the file will be saved in the current working directory. Default = None.

Returns:

dict – A Dictionary containing the paths to the atlas image, tsv and json files.

Return type:

Dictionary

Examples

Download the Talairach atlas to the current directory.

>>> get_Talairach()

Download the atlas to a specific path, e.g. the user’s Desktop and indicate a resolution.

>>> get_Talairach(resolution=1, path='/home/user/Desktop')