Skip to main content

A simple Python-based tool for finding brain atlas regions based on MNI coordinates.

Project description

mni-to-atlas

A simple Python-based tool for finding brain atlas regions based on MNI coordinates, with basic plotting abilities to show the sagittal, coronal, and axial views of the coordinates on the atlas.

The following atlases are currently supported:

  • Automated anatomical labelling atlas [1]
  • Automated anatomical labelling 3 atlas (1mm3 voxel version) [2]
  • Human Connectome Project extended parcellation atlas [3]

If there is an atlas you would like to see added, please open an issue.

Example screenshot of the plotting: image

Requirements:

See here for the list of requirements.

Use Example:

  1. Install the package into the desired environment using pip pip install mni-to-atlas.
  2. Import the AtlasBrowser class into your workspace.
  3. Create an instance of the AtlasBrowser class and specify an atlas to use (can be "AAL", "AAL3", or "HCPEx").
  4. Provide MNI coordinates to the AtlasBrowser object to find the corresponding atlas regions. The brain regions for these coordinates are then returned as a list of strings.
    • The coordinates should be an (n x 3) array, where each row contains an x-, y-, and z-axis MNI coordinate.
    • By default, plotting the coordinates is not performed, however this can be changed by setting plot = True in the find_regions method. In this case, a figure will be generated for each set of coordinates.

# Import the AtlasBrowser class
from mni_to_atlas import AtlasBrowser

# Instantiate the AtlasBrowser class and specify the atlas to use
atlas = AtlasBrowser("AAL3")

# Provide MNI coordinates as an (n x 3) array
coordinates = np.array([[-24, -53, 73],
                        [-25, 20, 78]])

# Find the brain regions at the MNI coordinates (plotting is optional)
regions = atlas.find_regions(coordinates, plot=True)

References:

  1. Tzourio-Mazoyer et al. (2002) DOI: 10.1006/nimg.2001.0978
  2. Rolls et al. (2020) DOI: 10.1016/j.neuroimage.2019.116189
  3. Huang et al. (2022) DOI: 10.1007/s00429-021-02421-6

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mni_to_atlas-1.1.0.tar.gz (663.4 kB view hashes)

Uploaded Source

Built Distribution

mni_to_atlas-1.1.0-py3-none-any.whl (662.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page