Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

registry

registry

Static registry of atlases hosted at nltools/niftis/atlases.

Each entry describes an atlas’s kind (deterministic vs probabilistic) and the citation users should cite when they use it. The actual NIfTI + label files are fetched lazily by load_atlas via fetch_resource.

Atlases were sourced from atlasreader (BSD-3-Clause) and are subject to their original upstream licenses — see LICENSES.md in the HF dataset.

Attributes:

NameTypeDescription
ATLASESdict [ str , AtlasMetadata ]
AtlasKind
DEFAULT_ATLASEStuple [ str , ...]

Classes:

NameDescription
AtlasMetadataStatic description of a registered atlas.

Methods:

NameDescription
list_atlasesReturn the sorted list of registered atlas names.

Classes

AtlasMetadata

AtlasMetadata(kind: AtlasKind, citation: str) -> None

Static description of a registered atlas.

Attributes:

NameTypeDescription
kindAtlasKind"deterministic" (3D integer-labeled) or "probabilistic" (4D, last axis indexes regions).
citationstrShort citation string for the original atlas.

Methods

list_atlases

list_atlases() -> list[str]

Return the sorted list of registered atlas names.

Returns:

TypeDescription
list [ str ]Sorted list of atlas names usable with
list [ str ]load_atlas.