diff --git a/_sources/documentation/brainglobe-heatmap/index.md.txt b/_sources/documentation/brainglobe-heatmap/index.md.txt index 86a263b7..f50276c3 100644 --- a/_sources/documentation/brainglobe-heatmap/index.md.txt +++ b/_sources/documentation/brainglobe-heatmap/index.md.txt @@ -20,14 +20,14 @@ The starting point for a heatmap visualization is a `dict` assigning scalar valu For example: ```python - regions = dict( # scalar values for each region - TH=1, - RSP=0.2, - AI=0.4, - SS=-3, - MO=2.6, - ... - ) +values = dict( # scalar values for each region + TH=1, + RSP=0.2, + AI=0.4, + SS=-3, + MO=2.6, + ... +) ``` `brainglobe-heatmap` creates a brainrender 3D `Scene` with the given regions colored according the values in the dictionary. @@ -56,9 +56,8 @@ In `examples/plan.py` there's an example showing how to use the `planner`: ```python import brainglobe_heatmap as bgh - planner = bgh.plan( - regions, + values, position=( 8000, 5000, @@ -74,7 +73,7 @@ The position of the center of the plane is given by a set of `(x, y, z)` coordin When using one of the named orientations, you don't need to pass a whole set of `(x, y, z)` coordinates for the plane center. A single value is sufficient as the other two won't affect the plane position: ```python -f = bgh.heatmap( +f = bgh.Heatmap( values, position=1000, orientation="sagittal", # 'frontal' or 'sagittal', or 'horizontal' or a tuple (x,y,z) @@ -88,7 +87,7 @@ f = bgh.heatmap( Also, you can create a slice with a plane centered in the brain by passing `position=None`: ```python -f = bgh.heatmap( +f = bgh.Heatmap( values, position=None, orientation="sagittal", # 'frontal' or 'sagittal', or 'horizontal' or a tuple (x,y,z) @@ -104,8 +103,7 @@ f = bgh.heatmap( Once happy with the position of the slicing planes, creating a visualization is as simple as: ```python - -bgh.heatmap( +bgh.Heatmap( values, position=( 8000, @@ -116,7 +114,7 @@ bgh.heatmap( title="horizontal view", vmin=-5, vmax=3, - cmap='Red', + cmap='Reds', format="2D", ).show() ``` @@ -128,11 +126,9 @@ Here, `format` specifies if a 2D plot should be made (using `matplotlib`) or a 3 You can use `brainglobe-heatmap` to get the coordinates of the 2D 'slices' (in the 2D plane's coordinates system): ```python - regions = ['TH', 'RSP', 'AI', 'SS', 'MO', 'PVZ', 'LZ', 'VIS', 'AUD', 'RHP', 'STR', 'CB', 'FRP', 'HIP', 'PA'] - -coordinates = bgh.get_plane_coordinates( +coordinates = bgh.get_structures_slice_coords( regions, position=( 8000, @@ -145,7 +141,7 @@ coordinates = bgh.get_plane_coordinates( ## Using `brainglobe-heatmap` with other atlases -`brainglobe-heatmap` uses `brainrender` which, in turn, uses brainglobe's `Atlas API` under the hood. That means that all of `brainglobe-heatmap`'s functionality is compatible with any of the atlases supported by the atlas API. `bgh.heatmap`, `bgh.planner` and `bgh.get_plane_coordinates` all accept a `atlas_name` argument, pass the name of the atlas name you'd like to use! +`brainglobe-heatmap` uses `brainrender` which, in turn, uses brainglobe's `Atlas API` under the hood. That means that all of `brainglobe-heatmap`'s functionality is compatible with any of the atlases supported by the atlas API. `bgh.Heatmap`, `bgh.planner` and `bgh.get_structures_slice_coords` all accept a `atlas_name` argument, pass the name of the atlas name you'd like to use! For more information see the API's [documentation](../brainglobe-atlasapi/index.md). ## Contributing @@ -153,11 +149,29 @@ For more information see the API's [documentation](../brainglobe-atlasapi/index. Contributions to `brainglobe-heatmap` are more than welcome. Please see the [Developer's guide](https://github.com/brainglobe/.github/blob/main/CONTRIBUTING.md). ## Citing `brainglobe-heatmap` - If you use `brainglobe-heatmap` in your work, please cite it as: ``` -Federico Claudi, & Luigi Petrucco. (2022). brainglobe/bg-heatmaps: (V0.2). Zenodo. https://doi.org/10.5281/zenodo.5891814 +Federico Claudi, Adam Tyson, Luigi Petrucco, Mathieu Bourdenx, carlocastoldi, Rami Hamati, & Alessandro Felder. (2024). brainglobe/brainglobe-heatmap. Zenodo. https://doi.org/10.5281/zenodo.10375287 +``` + +If you use `brainrender` via `brainglobe-heatmap` (i.e. for 3D visualisation), please also cite it: +``` +Claudi, F., Tyson, A. L., Petrucco, L., Margrie, T.W., Portugues, R., Branco, T. (2021) "Visualizing anatomically registered data with Brainrender" eLife 2021;10:e65751 [doi.org/10.7554/eLife.65751](https://doi.org/10.7554/eLife.65751) ``` -`brainglobe-heatmap` was originally developed by Federico Claudi and Luigi Petrucco, with the help of Marco Musy (the developer of [`vedo`](https://github.com/marcomusy/vedo)) +BibTeX: + +``` bibtex +@article{Claudi2021, +author = {Claudi, Federico and Tyson, Adam L. and Petrucco, Luigi and Margrie, Troy W. and Portugues, Ruben and Branco, Tiago}, +doi = {10.7554/eLife.65751}, +issn = {2050084X}, +journal = {eLife}, +pages = {1--16}, +pmid = {33739286}, +title = {{Visualizing anatomically registered data with brainrender}}, +volume = {10}, +year = {2021} +} +``` diff --git a/documentation/brainglobe-heatmap/index.html b/documentation/brainglobe-heatmap/index.html index b6ef8895..3bc6a323 100644 --- a/documentation/brainglobe-heatmap/index.html +++ b/documentation/brainglobe-heatmap/index.html @@ -653,14 +653,14 @@

Installation#

The starting point for a heatmap visualization is a dict assigning scalar values to a set of brain regions (identified by their acronym). For example:

-
    regions = dict(  # scalar values for each region
-        TH=1,
-        RSP=0.2,
-        AI=0.4,
-        SS=-3,
-        MO=2.6,
-        ...
-    )
+
values = dict(  # scalar values for each region
+    TH=1,
+    RSP=0.2,
+    AI=0.4,
+    SS=-3,
+    MO=2.6,
+    ...
+)
 

brainglobe-heatmap creates a brainrender 3D Scene with the given regions colored according the values in the dictionary. @@ -680,9 +680,8 @@

Slicing plane positionexamples/plan.py there’s an example showing how to use the planner:

import brainglobe_heatmap as bgh
 
-
 planner = bgh.plan(
-    regions,
+    values,
     position=(
         8000,
         5000,
@@ -695,7 +694,7 @@ 

Slicing plane position

The position of the center of the plane is given by a set of (x, y, z) coordinates. The orientation can be specified by a string (frontal, sagittal, horizontal) which will result in a standard orthogonal slice, or by a vector (x, y, z) with the orientation along the 3 axes.

When using one of the named orientations, you don’t need to pass a whole set of (x, y, z) coordinates for the plane center. A single value is sufficient as the other two won’t affect the plane position:

-
f = bgh.heatmap(
+
 

Also, you can create a slice with a plane centered in the brain by passing position=None:

-
f = bgh.heatmap(
+
f = bgh.Heatmap(
     values,
     position=None,
     orientation="sagittal",  # 'frontal' or 'sagittal', or 'horizontal' or a tuple (x,y,z)
@@ -722,8 +721,7 @@ 

Slicing plane position

Visualization#

Once happy with the position of the slicing planes, creating a visualization is as simple as:

-

-bgh.heatmap(
+
bgh.Heatmap(
     values,
     position=(
         8000,
@@ -734,7 +732,7 @@ 

Visualizationtitle="horizontal view", vmin=-5, vmax=3, - cmap='Red', + cmap='Reds', format="2D", ).show()

@@ -744,11 +742,9 @@

Visualization

Regions coordinates#

You can use brainglobe-heatmap to get the coordinates of the 2D ‘slices’ (in the 2D plane’s coordinates system):

-

-regions = ['TH', 'RSP', 'AI', 'SS', 'MO', 'PVZ', 'LZ', 'VIS', 'AUD', 'RHP', 'STR', 'CB', 'FRP', 'HIP', 'PA']
-
+
regions = ['TH', 'RSP', 'AI', 'SS', 'MO', 'PVZ', 'LZ', 'VIS', 'AUD', 'RHP', 'STR', 'CB', 'FRP', 'HIP', 'PA']
 
-coordinates = bgh.get_plane_coordinates(
+coordinates = bgh.get_structures_slice_coords(
     regions,
     position=(
         8000,
@@ -763,7 +759,7 @@ 

Regions coordinates

Using brainglobe-heatmap with other atlases#

-

brainglobe-heatmap uses brainrender which, in turn, uses brainglobe’s Atlas API under the hood. That means that all of brainglobe-heatmap’s functionality is compatible with any of the atlases supported by the atlas API. bgh.heatmap, bgh.planner and bgh.get_plane_coordinates all accept a atlas_name argument, pass the name of the atlas name you’d like to use! +

brainglobe-heatmap uses brainrender which, in turn, uses brainglobe’s Atlas API under the hood. That means that all of brainglobe-heatmap’s functionality is compatible with any of the atlases supported by the atlas API. bgh.Heatmap, bgh.planner and bgh.get_structures_slice_coords all accept a atlas_name argument, pass the name of the atlas name you’d like to use! For more information see the API’s documentation.

@@ -773,10 +769,27 @@

Contributing

Citing brainglobe-heatmap#

If you use brainglobe-heatmap in your work, please cite it as:

-
Federico Claudi, & Luigi Petrucco. (2022). brainglobe/bg-heatmaps: (V0.2). Zenodo. https://doi.org/10.5281/zenodo.5891814
+
Federico Claudi, Adam Tyson, Luigi Petrucco, Mathieu Bourdenx, carlocastoldi, Rami Hamati, & Alessandro Felder. (2024). brainglobe/brainglobe-heatmap. Zenodo. https://doi.org/10.5281/zenodo.10375287
+
+
+

If you use brainrender via brainglobe-heatmap (i.e. for 3D visualisation), please also cite it:

+
Claudi, F., Tyson, A. L., Petrucco, L., Margrie, T.W., Portugues, R.,  Branco, T. (2021) "Visualizing anatomically registered data with Brainrender&quot; <i>eLife</i> 2021;10:e65751 [doi.org/10.7554/eLife.65751](https://doi.org/10.7554/eLife.65751)
+
+
+

BibTeX:

+
@article{Claudi2021,
+author = {Claudi, Federico and Tyson, Adam L. and Petrucco, Luigi and Margrie, Troy W. and Portugues, Ruben and Branco, Tiago},
+doi = {10.7554/eLife.65751},
+issn = {2050084X},
+journal = {eLife},
+pages = {1--16},
+pmid = {33739286},
+title = {{Visualizing anatomically registered data with brainrender}},
+volume = {10},
+year = {2021}
+}
 
-

brainglobe-heatmap was originally developed by Federico Claudi and Luigi Petrucco, with the help of Marco Musy (the developer of vedo)

diff --git a/searchindex.js b/searchindex.js index c4620e26..a1e2a694 100644 --- a/searchindex.js +++ b/searchindex.js @@ -1 +1 @@ -Search.setIndex({"alltitles": {"2D filtering": [[30, "d-filtering"]], "3D Edge-Aware Refined Atlases Derived from the Allen Developing Mouse Brain Atlases": [[47, "d-edge-aware-refined-atlases-derived-from-the-allen-developing-mouse-brain-atlases"]], "3D filtering": [[30, "id1"]], "3D version of the Allen mouse spinal cord atlas": [[47, "d-version-of-the-allen-mouse-spinal-cord-atlas"]], "A mouse brain atlas with barrel field annotations has been added to BrainGlobe": [[3, null]], "A note about the camera position": [[74, "a-note-about-the-camera-position"]], "AZBA: A 3D Adult zebrafish brain atlas": [[47, "azba-a-3d-adult-zebrafish-brain-atlas"]], "About": [[0, null]], "Accessing data": [[0, "accessing-data"]], "Activate the environment": [[105, "activate-the-environment"]], "Actors": [[80, null]], "Adding a new atlas": [[26, "adding-a-new-atlas"], [45, null]], "Adding a new supported citation format": [[28, "adding-a-new-supported-citation-format"]], "Adding actors to your scene": [[80, "adding-actors-to-your-scene"]], "Adding new repositories or tools": [[28, "adding-new-repositories-or-tools"]], "Adding/removing actors": [[82, "adding-removing-actors"]], "Additional options": [[62, "additional-options"], [72, "additional-options"]], "Advanced installation": [[79, "advanced-installation"]], "Affine registration": [[76, "affine-registration"]], "Aligning Big Brains & Atlases": [[34, "aligning-big-brains-atlases"]], "Aligning samples for template building": [[128, null]], "Aligning spikes to histology with BrainGlobe": [[114, "aligning-spikes-to-histology-with-brainglobe"]], "Aligning to atlas\u2019s space": [[85, "aligning-to-atlass-space"]], "All cell detection parameters": [[94, null]], "All point information": [[59, "all-point-information"]], "Allen Adult Mouse Brain Atlas": [[47, "allen-adult-mouse-brain-atlas"]], "Allen Human Brain Atlas": [[47, "allen-human-brain-atlas"]], "Allen Morphology": [[103, "allen-morphology"]], "Amphibian": [[47, "amphibian"]], "An Atlas for the regenerative Ambystoma mexicanum (axolotl) has been added to BrainGlobe": [[2, null]], "An atlas for the Blind Mexican Cavefish has been added to BrainGlobe": [[8, null]], "An atlas for the prairie vole Microtus ochrogaster has been added to BrainGlobe": [[12, null]], "Analyse the segmented layer": [[53, "analyse-the-segmented-layer"]], "Analysing brainwide distribution of cells": [[130, null]], "Analysing segmentation from other napari plugins": [[53, null]], "Analysis": [[66, "analysis"]], "Analyze and visualize bulk fluorescence tracing data": [[129, null]], "Analyzing data": [[0, "analyzing-data"]], "Anatomical, annotation and hemispheres stack": [[49, "anatomical-annotation-and-hemispheres-stack"]], "Annotating data": [[97, "annotating-data"]], "Anything else": [[90, "anything-else"]], "Appendix: a note on cellfinder": [[16, "appendix-a-note-on-cellfinder"]], "Arguments": [[62, "arguments"], [72, "arguments"], [99, "arguments"]], "Atlas": [[72, "atlas"]], "Atlas details": [[47, null]], "Atlas generation": [[45, "atlas-generation"]], "Atlas scripts": [[45, "atlas-scripts"]], "Atlases available": [[46, "atlases-available"]], "Automated versioning": [[33, "automated-versioning"]], "Available atlases": [[47, "available-atlases"]], "Axis ordering in spatial arrays": [[22, "axis-ordering-in-spatial-arrays"]], "Basic installation": [[79, "basic-installation"]], "Basic usage": [[62, "basic-usage"], [72, "basic-usage"]], "Before tracing bulk axonal tracks": [[129, "before-tracing-bulk-axonal-tracks"]], "Before tracing probe tracks": [[127, "before-tracing-probe-tracks"]], "Before you start": [[118, "before-you-start"]], "Blind Mexican cavefish brain atlas": [[47, "blind-mexican-cavefish-brain-atlas"]], "Blog": [[11, null]], "BlueBrain Barrel Cortex Atlas": [[47, "bluebrain-barrel-cortex-atlas"]], "Brain registration to an atlas": [[127, "brain-registration-to-an-atlas"], [129, "brain-registration-to-an-atlas"]], "BrainAtlas": [[34, "brainatlas"]], "BrainGlobe": [[110, null]], "BrainGlobe Atlas API (brainglobe-atlasapi)": [[46, null]], "BrainGlobe Tools": [[24, "brainglobe-tools"]], "BrainGlobe is being restructured, version 1 is on it\u2019s way!": [[16, null]], "BrainGlobe publications": [[113, null]], "BrainGlobe restructuring (version 1) release notes": [[36, "brainglobe-restructuring-version-1-release-notes"]], "BrainGlobe tools with additional developer information": [[31, null]], "BrainGlobe version 1 is here!": [[17, null]], "BrainGlobe version 1 overview": [[40, null]], "BrainGlobe version 1.1.0 is released!": [[5, null]], "BrainGlobe: a Python ecosystem for computational (neuro)anatomy": [[114, "brainglobe-a-python-ecosystem-for-computational-neuro-anatomy"], [114, "id1"]], "BrainGlobe; An Open-Source Platform for Neuroscientists": [[111, "brainglobe-an-open-source-platform-for-neuroscientists"]], "Brainrender: visualising brain data in 3D": [[111, "brainrender-visualising-brain-data-in-3d"]], "Braintracer": [[34, "braintracer"]], "Brainways": [[34, "brainways"]], "Bugs": [[44, "bugs"]], "Bulk axonal track detection": [[129, "bulk-axonal-track-detection"]], "CPU instruction sets": [[89, "cpu-instruction-sets"]], "Can I install from conda-forge?": [[40, "can-i-install-from-conda-forge"]], "Can\u2019t find openCV": [[89, "cant-find-opencv"]], "Cell candidate classification": [[61, null], [90, "cell-candidate-classification"]], "Cell candidate detection": [[60, null], [90, "cell-candidate-detection"]], "Cell classification or training the network is slow": [[91, "cell-classification-or-training-the-network-is-slow"]], "Cell coordinates": [[84, "cell-coordinates"]], "Cell detection": [[30, "cell-detection"], [95, null]], "Cellfinder version 1.3.0 is released!": [[9, null]], "Cellfinder: Harnessing the power of deep learning to map the brain": [[111, "cellfinder-harnessing-the-power-of-deep-learning-to-map-the-brain"]], "Chan Zuckerberg Initiative awards two grants to BrainGlobe": [[111, "chan-zuckerberg-initiative-awards-two-grants-to-brainglobe"]], "Changes at-a-glance": [[40, "changes-at-a-glance"]], "Check that conda is installed": [[105, "check-that-conda-is-installed"]], "Checking orientation": [[74, null]], "Citation": [[46, "citation"], [52, "citation"], [69, "citation"], [78, "citation"]], "Citing brainglobe-heatmap": [[51, "citing-brainglobe-heatmap"]], "Citing cellfinder": [[65, "citing-cellfinder"], [87, "citing-cellfinder"]], "Classification performance": [[9, "classification-performance"]], "ClearFinder": [[34, "clearfinder"]], "Command line interface": [[48, null], [62, null]], "Command line tool": [[72, null]], "Command-line executable": [[37, "command-line-executable"]], "CommandLineInputError: File path: cannot be found.": [[64, "commandlineinputerror-file-path-cannot-be-found"]], "Common problems": [[71, "common-problems"]], "Community": [[35, null]], "Contact": [[44, null]], "Continuous integration": [[32, "continuous-integration"]], "Contributing": [[44, "contributing"], [51, "contributing"]], "Contributors": [[112, "contributors"]], "Conventions": [[22, null], [27, "conventions"]], "Coordinating releases with the documentation and the metapackage": [[25, "coordinating-releases-with-the-documentation-and-the-metapackage"]], "Coronal section": [[107, "coronal-section"]], "Correct orientation": [[74, "correct-orientation"]], "Course materials": [[18, "course-materials"]], "Courses": [[18, null]], "Create the environment": [[105, "create-the-environment"]], "Creating a BrainGlobeAtlas object": [[49, "creating-a-brainglobeatlas-object"]], "Creating a development environment": [[23, "creating-a-development-environment"]], "Current status": [[42, "current-status"], [43, "current-status"]], "Currently supported datasets": [[102, "currently-supported-datasets"]], "Data requirements": [[63, null]], "Debugging common error messages": [[64, null], [89, null]], "December 6th 2023": [[20, null]], "Default architecture for BrainGlobe Tools": [[24, "default-architecture-for-brainglobe-tools"]], "Delaying updating": [[39, "delaying-updating"]], "Dependency Pinning": [[27, "dependency-pinning"]], "Dependency Tree": [[27, "dependency-tree"]], "Dependency support": [[22, "dependency-support"]], "Details": [[5, "details"], [59, "details"], [69, "details"]], "Detecting cells in 3D with cellfinder": [[121, null]], "Determining sample orientation": [[128, null]], "Developers: what you need to know": [[17, "developers-what-you-need-to-know"]], "Developer\u2019s guide": [[23, null]], "Disambiguation": [[39, "disambiguation"]], "Documentation": [[22, "documentation"], [101, null]], "Download an atlas through napari": [[124, null]], "Download atlas (optional)": [[70, "download-atlas-optional"]], "Download miniconda": [[105, "download-miniconda"]], "Downloading data": [[103, null]], "Downloading pre-trained models": [[88, "downloading-pre-trained-models"]], "Downloading the pre-trained model in advance": [[93, null]], "Easy iteration over projections": [[55, "easy-iteration-over-projections"]], "Editing actors": [[82, "editing-actors"]], "Editing the documentation": [[23, "editing-the-documentation"]], "Embedding renderings in Jupyter notebooks": [[83, "embedding-renderings-in-jupyter-notebooks"]], "Enhanced and Unified Mouse Brain Atlas": [[47, "enhanced-and-unified-mouse-brain-atlas"]], "Error messages": [[64, "error-messages"], [71, "error-messages"], [89, "error-messages"]], "Example, highlighting pinning from below": [[25, "example-highlighting-pinning-from-below"]], "Examples": [[107, "examples"]], "Examples of guiding principles in practice": [[24, "examples-of-guiding-principles-in-practice"]], "Exploring the numerical results": [[115, null]], "Exporting data for training": [[97, "exporting-data-for-training"]], "Exporting to html": [[86, "exporting-to-html"]], "Extracting meshes": [[45, "extracting-meshes"]], "Failed workflows": [[25, "failed-workflows"]], "Feature requests": [[44, "feature-requests"]], "Figure options": [[62, "figure-options"]], "Figures": [[66, "figures"]], "Fish": [[47, "fish"]], "Fixing technical problems": [[90, "fixing-technical-problems"]], "Freeform registration": [[76, "freeform-registration"]], "From PyPI, via pip": [[27, "from-pypi-via-pip"]], "Full Changelog": [[17, "full-changelog"], [40, "full-changelog"]], "Full changelog": [[13, "full-changelog"], [14, "full-changelog"], [15, "full-changelog"]], "Full documentation": [[78, "full-documentation"]], "Funders": [[109, null]], "Further details": [[105, "further-details"]], "Further help": [[99, "further-help"]], "Further information": [[23, "further-information"]], "Future": [[0, "future"], [42, "future"]], "Future-warning": [[39, "future-warning"]], "Generate training data": [[99, "generate-training-data"]], "Generating Citations for BrainGlobe tools": [[56, null]], "Generating data to retrain the cellfinder classification network": [[97, null]], "Getting started": [[67, "getting-started"], [73, "getting-started"], [123, "getting-started"]], "Gubra\u2019s LSFM mouse brain atlas": [[47, "gubras-lsfm-mouse-brain-atlas"]], "Guiding principles for development": [[24, "guiding-principles-for-development"]], "Histology analysis using napari and BrainGlobe": [[20, "histology-analysis-using-napari-and-brainglobe"], [21, "histology-analysis-using-napari-and-brainglobe"]], "Horizontal section": [[107, "horizontal-section"]], "How are BrainGlobe atlases distributed?": [[45, "how-are-brainglobe-atlases-distributed"]], "How can I be sure I get credited for the atlas I contributed?": [[45, "how-can-i-be-sure-i-get-credited-for-the-atlas-i-contributed"]], "How can I stay updated?": [[16, "how-can-i-stay-updated"]], "How do I install it?": [[6, "how-do-i-install-it"]], "How do I use it?": [[6, "how-do-i-use-it"]], "How do I use the new atlas?": [[2, "how-do-i-use-the-new-atlas"], [3, "how-do-i-use-the-new-atlas"], [8, "how-do-i-use-the-new-atlas"], [12, "how-do-i-use-the-new-atlas"]], "How to generate an atlas programmatically?": [[45, "how-to-generate-an-atlas-programmatically"]], "How to install": [[59, "how-to-install"], [69, "how-to-install"]], "How to use": [[59, "how-to-use"]], "Human": [[47, "human"]], "I have not updated to brainglobe-workflows, and I use the cellfinder CLI": [[38, "i-have-not-updated-to-brainglobe-workflows-and-i-use-the-cellfinder-cli"]], "I have not updated to brainglobe-workflows, but I don\u2019t use the cellfinder CLI": [[38, "i-have-not-updated-to-brainglobe-workflows-but-i-dont-use-the-cellfinder-cli"]], "I previously updated to brainglobe-workflows": [[38, "i-previously-updated-to-brainglobe-workflows"]], "INFO:tensorflow:Error reported to Coordinator: Failed to get convolution algorithm": [[89, "info-tensorflow-error-reported-to-coordinator-failed-to-get-convolution-algorithm"]], "Image IO submodule": [[57, null]], "Image channels": [[63, "image-channels"]], "Image data": [[84, "image-data"]], "Image space definition": [[107, null]], "Image structure": [[63, "image-structure"]], "ImportError: DLL load failed: The specified module could not be found.": [[89, "importerror-dll-load-failed-the-specified-module-could-not-be-found"]], "Improving algorithm performance": [[90, "improving-algorithm-performance"]], "Improving registration performance": [[71, "improving-registration-performance"]], "Incorrect orientation": [[74, "incorrect-orientation"]], "Individual Tool Documentation": [[101, "individual-tool-documentation"]], "Inspecting results": [[45, "inspecting-results"]], "Install miniconda": [[105, "install-miniconda"]], "Installation": [[27, "installation"], [46, "installation"], [51, "installation"], [52, "installation"], [55, "installation"], [57, "installation"], [68, "installation"], [70, "installation"], [87, "installation"], [88, null], [102, "installation"], [105, "installation"], [106, "installation"]], "Installation and download": [[118, "installation-and-download"]], "Installing BrainGlobe": [[101, "installing-brainglobe"]], "Installing Individual Tools": [[101, "installing-individual-tools"]], "Installing NVIDIA drivers": [[106, "installing-nvidia-drivers"]], "Installing PyTorch with GPU support": [[106, "installing-pytorch-with-gpu-support"]], "Installing as part of the metapackage": [[59, null]], "Installing brainmapper": [[88, "installing-brainmapper"]], "Installing brainrender": [[79, null]], "Installing on its own via PyPI": [[59, null]], "Installing the cellfinder package": [[88, "installing-the-cellfinder-package"]], "Installing the command line tool": [[70, null]], "Installing the napari plugin": [[70, null]], "Installing with cellfinder versions older than v1.0.0": [[68, "installing-with-cellfinder-versions-older-than-v1-0-0"]], "Installing within napari": [[59, null]], "Instructions": [[53, "instructions"]], "Instructors": [[20, "instructors"], [21, "instructors"]], "Introduction": [[0, "introduction"], [19, "introduction"], [23, "introduction"], [53, "introduction"], [55, "introduction"], [63, "introduction"], [78, "introduction"], [91, "introduction"], [105, "introduction"], [106, "introduction"], [127, "introduction"], [129, "introduction"]], "Introduction to the BrainGlobe codebase for developers": [[24, null]], "Issues": [[42, "issues"], [43, "issues"]], "Kim Lab Developmental CCF (P56)": [[47, "kim-lab-developmental-ccf-p56"]], "Leadership": [[112, "leadership"]], "Loading data": [[73, "loading-data"], [95, "loading-data"], [97, "loading-data"]], "Loading images": [[57, "loading-images"]], "Loading the data": [[84, "loading-the-data"]], "Location": [[20, "location"], [21, "location"]], "MagellanMapper": [[34, "magellanmapper"]], "Main updates": [[5, "main-updates"], [9, "main-updates"]], "Mandatory": [[62, "mandatory"], [72, "mandatory"], [94, "mandatory"], [98, "mandatory"]], "Mandatory parameters": [[95, "mandatory-parameters"]], "Matching resolution and offset": [[85, "matching-resolution-and-offset"]], "Matching space resolutions and offsets": [[55, "matching-space-resolutions-and-offsets"]], "Materials": [[19, "materials"], [20, "materials"], [21, "materials"]], "Max Planck zebrafish brain atlas": [[47, "max-planck-zebrafish-brain-atlas"]], "May 2024": [[42, null]], "Media": [[111, null]], "Metadata": [[49, "metadata"]], "Methodology": [[30, "methodology"]], "Methods": [[82, "methods"]], "Misc options": [[72, "misc-options"], [94, "misc-options"], [98, "misc-options"]], "More details": [[0, "more-details"], [46, "more-details"]], "Mouse": [[47, "mouse"]], "MouseLight": [[103, "mouselight"]], "Mpin Zebrafish": [[103, "mpin-zebrafish"]], "Napari plugin": [[73, null]], "Navigating": [[54, "navigating"]], "Network": [[98, "network"]], "Neuromorpho": [[103, "neuromorpho"]], "Neuron morphology": [[84, "neuron-morphology"]], "New brainmapper napari widget released": [[6, null]], "NiftyReg": [[76, "niftyreg"]], "Notes": [[65, "notes"]], "November 2023": [[43, null]], "Numerical results": [[59, "numerical-results"]], "OSError: [Errno 24] Too many open files": [[64, "oserror-errno-24-too-many-open-files"]], "October 7th-8th 2024": [[21, null]], "On the command line": [[25, "on-the-command-line"]], "Only run parts of brainmapper": [[62, "only-run-parts-of-brainmapper"]], "Optional": [[94, "optional"], [98, "optional"]], "Optional Arguments": [[62, "optional-arguments"]], "Organisation": [[63, "organisation"]], "Orientation": [[107, "orientation"]], "Other ongoing projects (release TBC)": [[43, "other-ongoing-projects-release-tbc"]], "Other rodent": [[47, "other-rodent"]], "Other ways to get in touch": [[44, "other-ways-to-get-in-touch"]], "Output files": [[66, null], [75, null]], "Overview": [[20, "overview"], [21, "overview"]], "People": [[112, null]], "Performance, debugging and testing": [[62, "performance-debugging-and-testing"]], "Plans for brainrender": [[7, null]], "Points": [[66, "points"]], "Points summary": [[59, "points-summary"]], "Prairie vole brain atlas": [[47, "prairie-vole-brain-atlas"]], "Pre-commit hooks": [[33, "pre-commit-hooks"]], "Pre-trained network": [[99, "pre-trained-network"]], "Prerequisites": [[20, "prerequisites"], [21, "prerequisites"], [54, null], [59, "prerequisites"]], "Previous courses": [[18, "previous-courses"]], "Princeton Mouse Brain Atlas": [[47, "princeton-mouse-brain-atlas"]], "Probe track tracing": [[127, "probe-track-tracing"]], "Progress since the last roadmap": [[42, "progress-since-the-last-roadmap"]], "Publications citing BrainGlobe": [[113, "publications-citing-brainglobe"]], "Publishing new releases": [[25, null]], "Pull requests": [[23, "pull-requests"]], "Put your data on a fast hard drive": [[91, "put-your-data-on-a-fast-hard-drive"]], "PyTorch backend": [[9, "pytorch-backend"]], "Python API": [[49, null]], "Python version support": [[39, "python-version-support"]], "Q1 2025": [[42, "q1-2025"]], "Q2 2025": [[42, "q2-2025"]], "Q3 2024": [[42, "q3-2024"]], "Q4 2024": [[42, "q4-2024"]], "Query for hemispheres": [[49, "query-for-hemispheres"]], "Query for structures": [[49, "query-for-structures"]], "Query the atlas": [[49, "query-the-atlas"]], "Questions": [[44, "questions"]], "Rat": [[47, "rat"]], "Regenerating the Dependency Tree": [[27, "regenerating-the-dependency-tree"]], "Region masks": [[49, "region-masks"]], "Regions coordinates": [[51, "regions-coordinates"]], "Regions hierarchy": [[49, "regions-hierarchy"]], "Regions meshes": [[49, "regions-meshes"]], "Registering a whole-brain image to an atlas": [[131, null]], "Registering additional channels": [[73, "registering-additional-channels"]], "Registering data": [[85, null]], "Registering your data": [[84, "registering-your-data"]], "Registration": [[66, "registration"]], "Registration backend": [[72, "registration-backend"]], "Registration options": [[72, "registration-options"]], "Registration parameters": [[76, null]], "Related tutorials": [[123, "related-tutorials"]], "Releases": [[36, null]], "Rendering and exporting": [[82, "rendering-and-exporting"]], "Rendering data": [[104, null]], "Rendering your scene in a separate window": [[83, "rendering-your-scene-in-a-separate-window"]], "Requirements": [[70, null], [88, "requirements"], [106, "requirements"]], "Results": [[59, "results"]], "Retraining the cellfinder classification network": [[122, null]], "Retraining the network for new data": [[98, null]], "Retraining the pre-trained network": [[99, null]], "Roadmaps": [[41, null]], "Run training": [[98, "run-training"]], "Running brainmapper": [[117, null]], "Running brainreg": [[73, "running-brainreg"]], "Running cellfinder": [[95, "running-cellfinder"]], "Running the cell candidate detection and classification separately": [[92, "running-the-cell-candidate-detection-and-classification-separately"]], "Saving data": [[95, "saving-data"]], "Saving images": [[57, "saving-images"]], "Saving the results": [[92, "saving-the-results"]], "Scene": [[82, null]], "Screenshots": [[86, "screenshots"]], "Segmentation fault": [[71, "segmentation-fault"]], "Segmenting 2/3D structures": [[126, null]], "Segmenting a 1D track": [[125, null]], "Segmenting your feature of interest": [[53, "segmenting-your-feature-of-interest"]], "Set parameters": [[98, "set-parameters"]], "Setting additional parameters": [[73, "setting-additional-parameters"]], "Setting parameters": [[95, "setting-parameters"]], "Setting up": [[108, null], [118, null]], "Setting up registration": [[73, "setting-up-registration"]], "Setting up your GPU": [[106, null]], "Setup your conda environment": [[105, "setup-your-conda-environment"]], "Silicon probe tracking": [[127, null]], "Slicing plane position": [[51, "slicing-plane-position"]], "Smoothed version of the Kim et al. mouse reference atlas": [[47, "smoothed-version-of-the-kim-et-al-mouse-reference-atlas"]], "Software built by the community": [[34, null]], "Specific Issues": [[91, "specific-issues"]], "Specific Repository Developer Documentation": [[31, null]], "Specific actor classes": [[80, "specific-actor-classes"]], "Specific applications": [[123, "specific-applications"]], "Speeding up cellfinder": [[91, null]], "Standalone installation": [[52, "standalone-installation"]], "Standard space options": [[62, "standard-space-options"]], "Start training": [[99, "start-training"]], "Starting the plugin": [[73, "starting-the-plugin"]], "Streamlines": [[84, "streamlines"]], "Structure detection": [[30, "structure-detection"]], "Suggested schedule": [[19, "suggested-schedule"]], "Supported data types": [[84, "supported-data-types"]], "Talks": [[114, null]], "TensorFlow backend": [[9, "tensorflow-backend"]], "Test data": [[32, "test-data"]], "Testing": [[32, null]], "The SpaceConvention class": [[55, "the-spaceconvention-class"]], "The best neuroscience stories from April 2020": [[111, "the-best-neuroscience-stories-from-april-2020"]], "Theory": [[99, "theory"]], "Things that look like errors, but aren\u2019t:": [[89, "things-that-look-like-errors-but-arent"]], "Things to Try": [[91, "things-to-try"]], "To contribute a new atlas": [[23, "to-contribute-a-new-atlas"]], "To contribute code": [[23, "to-contribute-code"]], "To improve the documentation": [[23, "to-improve-the-documentation"]], "To load your data": [[54, "to-load-your-data"]], "To run the full pipeline (cell candidate detection and classification)": [[92, "to-run-the-full-pipeline-cell-candidate-detection-and-classification"]], "Tooling": [[33, null]], "Training": [[98, "training"]], "Training data generation strategy": [[99, "training-data-generation-strategy"]], "Training the network": [[92, "training-the-network"], [99, "training-the-network"]], "Transformed points": [[59, "transformed-points"]], "Triggering a new release": [[25, "triggering-a-new-release"]], "Troubleshooting": [[71, null], [87, "troubleshooting"], [90, null]], "Tutorial": [[116, "tutorial"]], "Tutorials": [[19, "tutorials"], [65, "tutorials"], [123, null]], "UNAM Axolotl Brain Atlas": [[47, "unam-axolotl-brain-atlas"]], "Under the hood?": [[16, "under-the-hood"]], "Updating": [[38, "updating"], [101, "updating"]], "Updating an existing atlas": [[45, "updating-an-existing-atlas"]], "Updating to the new cellfinder (CLI) tool": [[39, "updating-to-the-new-cellfinder-cli-tool"]], "Updating to version 1": [[40, "updating-to-version-1"]], "Uploading the atlas": [[45, "uploading-the-atlas"]], "Usage": [[46, "usage"], [54, "usage"], [55, "usage"], [77, "usage"], [81, null], [102, "usage"]], "Usage Pattern": [[56, "usage-pattern"]], "Use a better computer": [[91, "use-a-better-computer"]], "User Guide": [[65, "user-guide"]], "User data": [[24, "user-data"]], "User guide": [[51, "user-guide"], [52, "user-guide"], [58, "user-guide"], [69, "user-guide"], [87, "user-guide"]], "Users: what you need to know": [[17, "users-what-you-need-to-know"]], "Using Notebooks": [[78, "using-notebooks"], [83, null]], "Using brainglobe-heatmap with other atlases": [[51, "using-brainglobe-heatmap-with-other-atlases"]], "Using conda": [[105, null]], "Using dask for lazy loading": [[92, "using-dask-for-lazy-loading"]], "Using deep learning to aid 3D cell detection in whole brain microscopy images": [[111, "using-deep-learning-to-aid-3d-cell-detection-in-whole-brain-microscopy-images"]], "Using supplied training data": [[100, null]], "Using the atlas": [[49, "using-the-atlas"]], "Using the files directly": [[50, null]], "Using the tool": [[56, "using-the-tool"]], "Using the widget": [[59, "using-the-widget"]], "Using your own data in brainrender": [[84, null]], "Version 1 of brainreg and brainglobe-segmentation released": [[13, null]], "Version 1: Cellfinder migration and brainglobe-workflows": [[39, null]], "Version 1: changes to registration and segmentation tools": [[37, null]], "Version 1: changes to the cellfinder backend and plugin": [[38, null]], "Versioning": [[27, "versioning"], [33, "versioning"]], "Videos": [[86, "videos"]], "Videos, animations and exporting to html": [[86, null]], "Visualisation": [[67, null]], "Visualise an atlas in napari": [[132, null]], "Visualising brainreg output": [[77, null]], "Visualising the results": [[119, null]], "Visualising your data in brainrender": [[120, null]], "Visualising your raw data": [[67, "visualising-your-raw-data"]], "Visualising your results": [[67, "visualising-your-results"]], "Visualization": [[51, "visualization"]], "Visualize the probe track with brainrender": [[127, "visualize-the-probe-track-with-brainrender"]], "Visualizing data": [[0, "visualizing-data"]], "Visualizing other types of data": [[80, "visualizing-other-types-of-data"]], "Voxel sizes": [[107, "voxel-sizes"]], "Waxholm Space atlas of the Sprague Dawley rat brain": [[47, "waxholm-space-atlas-of-the-sprague-dawley-rat-brain"]], "Ways to use cellfinder": [[87, "ways-to-use-cellfinder"]], "What data do you need to contribute an atlas to the BrainGlobe Initiative?": [[45, "what-data-do-you-need-to-contribute-an-atlas-to-the-brainglobe-initiative"]], "What do I need to do?": [[1, "what-do-i-need-to-do"], [4, "what-do-i-need-to-do"], [5, "what-do-i-need-to-do"], [7, "what-do-i-need-to-do"], [9, "what-do-i-need-to-do"], [10, "what-do-i-need-to-do"], [13, "what-do-i-need-to-do"], [14, "what-do-i-need-to-do"], [15, "what-do-i-need-to-do"]], "What does it do?": [[6, "what-does-it-do"]], "What is changing?": [[16, "what-is-changing"]], "Whole brain cell detection and registration with the brainmapper command line tool": [[116, null]], "Whole brain microscopy analysis with BrainGlobe and napari": [[19, null]], "Why These Python Coders are Joining the napari Community": [[111, "why-these-python-coders-are-joining-the-napari-community"]], "Why are we adding new atlases?": [[2, "why-are-we-adding-new-atlases"], [3, "why-are-we-adding-new-atlases"], [8, "why-are-we-adding-new-atlases"], [12, "why-are-we-adding-new-atlases"]], "Workflow": [[99, "workflow"]], "Workflow for publishing new releases": [[25, "workflow-for-publishing-new-releases"]], "Working with cameras": [[82, "working-with-cameras"]], "Wrap-up": [[19, "wrap-up"]], "bg-atlasapi and bg-atlasgen have merged under a new name": [[1, null]], "bg-space has been renamed": [[4, null]], "brainglobe-atlasapi": [[5, "brainglobe-atlasapi"], [26, null]], "brainglobe-heatmap": [[51, null]], "brainglobe-meta": [[27, null]], "brainglobe-segmentation": [[5, "brainglobe-segmentation"], [52, null]], "brainglobe-space": [[55, null]], "brainglobe-utils": [[5, "brainglobe-utils"], [28, null], [58, null]], "brainglobe-workflows": [[5, "brainglobe-workflows"], [29, null], [38, "brainglobe-workflows"], [39, "brainglobe-workflows"], [68, null]], "brainmapper cell transformation widget": [[59, null]], "brainmapper command line tool": [[65, null]], "brainmapper command-line tool": [[87, "brainmapper-command-line-tool"]], "brainreg": [[5, "brainreg"], [69, null]], "brainreg and brainreg-napari": [[37, "brainreg-and-brainreg-napari"]], "brainreg-segment": [[37, "brainreg-segment"]], "brainrender": [[5, "brainrender"], [78, null]], "cellfinder": [[5, "cellfinder"], [87, null]], "cellfinder (Docker image)": [[39, "cellfinder-docker-image"]], "cellfinder (package)": [[39, "cellfinder-package"]], "cellfinder (repository)": [[39, "cellfinder-repository"]], "cellfinder file paths": [[29, "cellfinder-file-paths"]], "cellfinder has moved: version 1 of brainglobe-workflows released": [[14, null]], "cellfinder napari plugin": [[87, "cellfinder-napari-plugin"], [96, null]], "cellfinder-core": [[38, "cellfinder-core"]], "cellfinder-core and cellfinder-napari have merged": [[15, null]], "cellfinder-napari": [[38, "cellfinder-napari"]], "cellfinder.core": [[30, null], [87, "cellfinder-core"]], "cellfinder.core API": [[92, null]], "citation.fetch": [[28, "citation-fetch"]], "citation.format and the citation.*_fmt submodules": [[28, "citation-format-and-the-citation-fmt-submodules"]], "citation.repositories": [[28, "citation-repositories"]], "cite-brainglobe and the citation submodule": [[28, "cite-brainglobe-and-the-citation-submodule"]], "conda-forge feedstocks": [[25, "conda-forge-feedstocks"]], "error: unrecognized arguments": [[64, "error-unrecognized-arguments"]], "imio will be merging into brainglobe-utils": [[10, null]], "morphapi": [[102, null]], "napari plugin": [[37, "napari-plugin"]], "pAPRica": [[34, "paprica"]], "v1 (Q4 2023)": [[43, "v1-q4-2023"]], "v2 (Q2 2024)": [[43, "v2-q2-2024"]], "v3 (Q4 2024)": [[43, "v3-q4-2024"]], "volume -> surface": [[84, "volume-surface"]], "vvasp": [[34, "vvasp"]]}, "docnames": ["about", "blog/atlasapi-atlasgen-merge", "blog/axolotl-atlas-added", "blog/barrel-atlas-added", "blog/bg-space-rename", "blog/brainglobe-v1_1", "blog/brainmapper-widget", "blog/brainrender-megafix", "blog/cavefish-atlas-added", "blog/cellfinder-v1_3", "blog/imio-retirement", "blog/index", "blog/prairie-vole-atlas-added", "blog/version1/brainreg_update_live", "blog/version1/cellfinder_migration_live", "blog/version1/core_and_napari_merge", "blog/version1/version_1_announcement", "blog/version1/version_1_released", "community/courses/index", "community/courses/materials/whole-brain-analysis/index", "community/courses/scheduled/dec-2023/index", "community/courses/scheduled/oct-2024/index", "community/developers/conventions", "community/developers/index", "community/developers/intro_to_codebase", "community/developers/new_releases", "community/developers/repositories/brainglobe-atlasapi/index", "community/developers/repositories/brainglobe-meta/index", "community/developers/repositories/brainglobe-utils/index", "community/developers/repositories/brainglobe-workflows/index", "community/developers/repositories/cellfinder-core/index", "community/developers/specific_repos", "community/developers/testing", "community/developers/tooling", "community/external-tools", "community/index", "community/releases/index", "community/releases/v1/brainreg", "community/releases/v1/cellfinder-core-and-plugin-merge", "community/releases/v1/cellfinder-migration", "community/releases/v1/index", "community/roadmaps/index", "community/roadmaps/may-2024", "community/roadmaps/november-2023", "contact", "documentation/brainglobe-atlasapi/adding-a-new-atlas", "documentation/brainglobe-atlasapi/index", "documentation/brainglobe-atlasapi/usage/atlas-details", "documentation/brainglobe-atlasapi/usage/command-line-interface", "documentation/brainglobe-atlasapi/usage/python-api", "documentation/brainglobe-atlasapi/usage/using-the-files-directly", "documentation/brainglobe-heatmap/index", "documentation/brainglobe-segmentation/index", "documentation/brainglobe-segmentation/user-guide/analysing-external-segmentation", "documentation/brainglobe-segmentation/user-guide/index", "documentation/brainglobe-space/index", "documentation/brainglobe-utils/citation-module", "documentation/brainglobe-utils/image_io", "documentation/brainglobe-utils/index", "documentation/brainglobe-utils/transform-widget", "documentation/brainglobe-workflows/brainmapper/candidate-detection", "documentation/brainglobe-workflows/brainmapper/classification", "documentation/brainglobe-workflows/brainmapper/cli", "documentation/brainglobe-workflows/brainmapper/data-requirements", "documentation/brainglobe-workflows/brainmapper/error-messages", "documentation/brainglobe-workflows/brainmapper/index", "documentation/brainglobe-workflows/brainmapper/output-files", "documentation/brainglobe-workflows/brainmapper/visualisation", "documentation/brainglobe-workflows/index", "documentation/brainreg/index", "documentation/brainreg/installation", "documentation/brainreg/troubleshooting", "documentation/brainreg/user-guide/brainreg-cli", "documentation/brainreg/user-guide/brainreg-napari", "documentation/brainreg/user-guide/checking-orientation", "documentation/brainreg/user-guide/output-files", "documentation/brainreg/user-guide/parameters", "documentation/brainreg/user-guide/visualisation", "documentation/brainrender/index", "documentation/brainrender/installation", "documentation/brainrender/usage/actors", "documentation/brainrender/usage/index", "documentation/brainrender/usage/scene", "documentation/brainrender/usage/using-notebooks", "documentation/brainrender/usage/using-your-data/index", "documentation/brainrender/usage/using-your-data/registering-data", "documentation/brainrender/usage/videos-animations-and-exporting-to-html", "documentation/cellfinder/index", "documentation/cellfinder/installation", "documentation/cellfinder/troubleshooting/error-messages", "documentation/cellfinder/troubleshooting/index", "documentation/cellfinder/troubleshooting/speed-up", "documentation/cellfinder/user-guide/cellfinder-core", "documentation/cellfinder/user-guide/cellfinder-download", "documentation/cellfinder/user-guide/napari-plugin/all-cell-detection-parameters", "documentation/cellfinder/user-guide/napari-plugin/cell-detection", "documentation/cellfinder/user-guide/napari-plugin/index", "documentation/cellfinder/user-guide/napari-plugin/training-data-generation", "documentation/cellfinder/user-guide/napari-plugin/training-the-network", "documentation/cellfinder/user-guide/training/index", "documentation/cellfinder/user-guide/training/using-supplied-data", "documentation/index", "documentation/morphapi/index", "documentation/morphapi/usage/downloading-data", "documentation/morphapi/usage/rendering-data", "documentation/setting-up/conda", "documentation/setting-up/gpu", "documentation/setting-up/image-definition", "documentation/setting-up/index", "funders", "index", "media", "people", "publications", "talks", "tutorials/brainmapper/exploring-the-numerical-results", "tutorials/brainmapper/index", "tutorials/brainmapper/running-brainmapper", "tutorials/brainmapper/setting-up", "tutorials/brainmapper/visualising-the-results", "tutorials/brainmapper/visualising-your-data-in-brainrender", "tutorials/cellfinder-detection", "tutorials/cellfinder-retraining", "tutorials/index", "tutorials/manage-atlases-in-GUI", "tutorials/segmenting-1d-tracks", "tutorials/segmenting-3d-structures", "tutorials/silicon-probe-tracking", "tutorials/template-builder-pre-align", "tutorials/tracing-tracking", "tutorials/transform-cells-atlas", "tutorials/tutorial-whole-brain-registration", "tutorials/visualise-atlas-napari"], "envversion": {"nbsphinx": 4, "sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["about.md", "blog/atlasapi-atlasgen-merge.md", "blog/axolotl-atlas-added.md", "blog/barrel-atlas-added.md", "blog/bg-space-rename.md", "blog/brainglobe-v1_1.md", "blog/brainmapper-widget.md", "blog/brainrender-megafix.md", "blog/cavefish-atlas-added.md", "blog/cellfinder-v1_3.md", "blog/imio-retirement.md", "blog/index.md", "blog/prairie-vole-atlas-added.md", "blog/version1/brainreg_update_live.md", "blog/version1/cellfinder_migration_live.md", "blog/version1/core_and_napari_merge.md", "blog/version1/version_1_announcement.md", "blog/version1/version_1_released.md", "community/courses/index.md", "community/courses/materials/whole-brain-analysis/index.md", "community/courses/scheduled/dec-2023/index.md", "community/courses/scheduled/oct-2024/index.md", "community/developers/conventions.md", "community/developers/index.md", "community/developers/intro_to_codebase.md", "community/developers/new_releases.md", "community/developers/repositories/brainglobe-atlasapi/index.md", "community/developers/repositories/brainglobe-meta/index.md", "community/developers/repositories/brainglobe-utils/index.md", "community/developers/repositories/brainglobe-workflows/index.md", "community/developers/repositories/cellfinder-core/index.md", "community/developers/specific_repos.md", "community/developers/testing.md", "community/developers/tooling.md", "community/external-tools.md", "community/index.md", "community/releases/index.md", "community/releases/v1/brainreg.md", "community/releases/v1/cellfinder-core-and-plugin-merge.md", "community/releases/v1/cellfinder-migration.md", "community/releases/v1/index.md", "community/roadmaps/index.md", "community/roadmaps/may-2024.md", "community/roadmaps/november-2023.md", "contact.md", "documentation/brainglobe-atlasapi/adding-a-new-atlas.md", "documentation/brainglobe-atlasapi/index.md", "documentation/brainglobe-atlasapi/usage/atlas-details.md", "documentation/brainglobe-atlasapi/usage/command-line-interface.md", "documentation/brainglobe-atlasapi/usage/python-api.md", "documentation/brainglobe-atlasapi/usage/using-the-files-directly.md", "documentation/brainglobe-heatmap/index.md", "documentation/brainglobe-segmentation/index.md", "documentation/brainglobe-segmentation/user-guide/analysing-external-segmentation.md", "documentation/brainglobe-segmentation/user-guide/index.md", "documentation/brainglobe-space/index.md", "documentation/brainglobe-utils/citation-module.md", "documentation/brainglobe-utils/image_io.md", "documentation/brainglobe-utils/index.md", "documentation/brainglobe-utils/transform-widget.md", "documentation/brainglobe-workflows/brainmapper/candidate-detection.md", "documentation/brainglobe-workflows/brainmapper/classification.md", "documentation/brainglobe-workflows/brainmapper/cli.md", "documentation/brainglobe-workflows/brainmapper/data-requirements.md", "documentation/brainglobe-workflows/brainmapper/error-messages.md", "documentation/brainglobe-workflows/brainmapper/index.md", "documentation/brainglobe-workflows/brainmapper/output-files.md", "documentation/brainglobe-workflows/brainmapper/visualisation.md", "documentation/brainglobe-workflows/index.md", "documentation/brainreg/index.md", "documentation/brainreg/installation.md", "documentation/brainreg/troubleshooting.md", "documentation/brainreg/user-guide/brainreg-cli.md", "documentation/brainreg/user-guide/brainreg-napari.md", "documentation/brainreg/user-guide/checking-orientation.md", "documentation/brainreg/user-guide/output-files.md", "documentation/brainreg/user-guide/parameters.md", "documentation/brainreg/user-guide/visualisation.md", "documentation/brainrender/index.md", "documentation/brainrender/installation.md", "documentation/brainrender/usage/actors.md", "documentation/brainrender/usage/index.md", "documentation/brainrender/usage/scene.md", "documentation/brainrender/usage/using-notebooks.md", "documentation/brainrender/usage/using-your-data/index.md", "documentation/brainrender/usage/using-your-data/registering-data.md", "documentation/brainrender/usage/videos-animations-and-exporting-to-html.md", "documentation/cellfinder/index.md", "documentation/cellfinder/installation.md", "documentation/cellfinder/troubleshooting/error-messages.md", "documentation/cellfinder/troubleshooting/index.md", "documentation/cellfinder/troubleshooting/speed-up.md", "documentation/cellfinder/user-guide/cellfinder-core.md", "documentation/cellfinder/user-guide/cellfinder-download.md", "documentation/cellfinder/user-guide/napari-plugin/all-cell-detection-parameters.md", "documentation/cellfinder/user-guide/napari-plugin/cell-detection.md", "documentation/cellfinder/user-guide/napari-plugin/index.md", "documentation/cellfinder/user-guide/napari-plugin/training-data-generation.md", "documentation/cellfinder/user-guide/napari-plugin/training-the-network.md", "documentation/cellfinder/user-guide/training/index.md", "documentation/cellfinder/user-guide/training/using-supplied-data.md", "documentation/index.md", "documentation/morphapi/index.md", "documentation/morphapi/usage/downloading-data.md", "documentation/morphapi/usage/rendering-data.md", "documentation/setting-up/conda.md", "documentation/setting-up/gpu.md", "documentation/setting-up/image-definition.md", "documentation/setting-up/index.md", "funders.md", "index.md", "media.md", "people.md", "publications.md", "talks.md", "tutorials/brainmapper/exploring-the-numerical-results.md", "tutorials/brainmapper/index.md", "tutorials/brainmapper/running-brainmapper.md", "tutorials/brainmapper/setting-up.md", "tutorials/brainmapper/visualising-the-results.md", "tutorials/brainmapper/visualising-your-data-in-brainrender.md", "tutorials/cellfinder-detection.md", "tutorials/cellfinder-retraining.md", "tutorials/index.md", "tutorials/manage-atlases-in-GUI.md", "tutorials/segmenting-1d-tracks.md", "tutorials/segmenting-3d-structures.md", "tutorials/silicon-probe-tracking.md", "tutorials/template-builder-pre-align.md", "tutorials/tracing-tracking.md", "tutorials/transform-cells-atlas.md", "tutorials/tutorial-whole-brain-registration.md", "tutorials/visualise-atlas-napari.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 2, 4, 7, 10, 11, 14, 24, 25, 27, 28, 31, 35, 37, 39, 40, 42, 45, 46, 51, 52, 56, 59, 62, 64, 65, 66, 69, 70, 73, 74, 78, 79, 80, 82, 83, 84, 86, 87, 89, 92, 93, 95, 97, 99, 103, 104, 105, 113, 116, 117, 118, 121, 122, 124, 125, 126, 127, 128, 129, 131, 132], "0": [4, 6, 10, 11, 12, 13, 15, 17, 22, 23, 25, 27, 30, 33, 37, 38, 39, 45, 49, 50, 51, 55, 59, 60, 65, 73, 76, 82, 86, 88, 89, 91, 92, 94, 98, 99, 100, 101, 103, 107, 114, 115, 116, 120, 128], "00": [21, 73, 89, 117, 121], "000": [92, 99, 100], "00000000": 89, "0001": 92, "0002": 100, "01": [11, 113], "02": 11, "021": [52, 65, 69, 113], "02668": [46, 52, 56, 65, 69, 113], "03": [11, 100, 113], "04": [89, 113], "04676": [52, 65, 69, 113], "05": [11, 89, 113], "06": [11, 113], "07": [11, 113, 117], "08": 11, "09": [11, 113], "1": [2, 3, 4, 8, 10, 11, 12, 15, 25, 27, 30, 33, 42, 45, 46, 49, 50, 51, 55, 57, 59, 60, 61, 65, 68, 69, 74, 76, 82, 88, 89, 92, 94, 98, 99, 100, 101, 113, 115, 116, 127, 128, 129], "10": [5, 11, 12, 21, 23, 42, 43, 46, 47, 51, 52, 56, 60, 65, 69, 76, 78, 87, 89, 92, 94, 100, 101, 102, 103, 113, 117, 130], "100": [32, 46, 92, 94, 98, 99, 100, 113, 119], "1000": [51, 94, 99], "100000": [60, 92, 94], "1008": 113, "1009074": [65, 87, 113], "100mb": [86, 128], "100mm": [127, 129], "100\u03bcm": [47, 92], "101": [98, 99], "1016": 113, "102": 113, "1036": [59, 115], "1038": [52, 65, 69, 113], "107617": 113, "109591": 113, "10am": 20, "10\u03bcm": [3, 47, 63, 70, 118, 127], "11": [9, 11, 101, 106, 113, 126], "110": 113, "1100": 94, "111": 113, "1116": [59, 115], "112": 113, "1121": 59, "1122": 59, "1128": 59, "113862": 113, "1154": 59, "1169": 59, "119": 113, "12": [11, 23, 52, 65, 69, 91, 101, 105, 113], "120": 59, "1208": 59, "122": 59, "12405": 113, "127": [59, 115], "127579949117": [59, 115], "128": [61, 76, 91], "1284107": 113, "12um": 128, "13": [89, 113], "132": 92, "132485": [59, 115], "1335": 100, "1371": [65, 87, 113], "13882": 113, "14": [11, 21, 113, 117], "141": [43, 89], "15": [19, 46, 60, 73, 92, 94, 113], "1500": 117, "150707702232": [59, 115], "152": [98, 99], "1541": [6, 59, 115], "1550": 117, "1576": 113, "1577": 113, "159": 113, "16": [11, 46, 47, 60, 92, 94, 98, 99, 100, 113], "16049mb": 91, "162": 113, "163": [6, 59, 115], "1634": 59, "166": 113, "1661": 59, "1674": 59, "168": 113, "16\u03bcm": 47, "17": [21, 65, 87, 89, 100, 113], "1750\u03bcm": 127, "177": 113, "18": [11, 21, 98, 99, 113], "182": 113, "183": 59, "185": 113, "1853": [6, 59, 115], "186": 113, "187": 59, "1889": 113, "1891": 59, "1900": 113, "190767": [59, 115], "194": [6, 59, 115], "1945": [59, 115], "1959": 113, "1977": 113, "1979": 129, "1d": [19, 53, 54, 123, 127], "1\u03bcm": 47, "2": [2, 4, 6, 8, 10, 12, 25, 27, 30, 45, 46, 49, 51, 53, 54, 55, 59, 60, 62, 72, 76, 86, 89, 92, 94, 98, 99, 100, 105, 107, 113, 115, 117, 121, 122, 123, 127, 128, 129, 130], "20": [5, 46, 47, 59, 61, 92, 113, 117, 130], "200": 59, "2000": 51, "2015": [61, 89, 98, 99], "2016": 69, "2017": 89, "2019": [47, 89, 102], "2020": [46, 47, 52, 56, 65, 69, 113, 114, 117], "2021": [2, 11, 47, 65, 78, 87, 111, 113, 114], "2022": [51, 52, 65, 69, 113], "2023": [8, 11, 18, 41, 42, 47, 113, 114], "2024": [3, 11, 12, 18, 41, 47, 56, 113], "207203665153": [59, 115], "20\u03bcm": [47, 127], "21": [11, 113], "21105": [46, 52, 56, 65, 69, 113], "212": 113, "2158": 59, "2194": 59, "22": 117, "222": 113, "23": [23, 113], "230": 73, "23408mib": 89, "24": [11, 22, 113], "24187mib": 89, "2441": 59, "245": [6, 59, 115], "247": 43, "25": [5, 46], "250": 116, "251": 113, "2528": 59, "255": 45, "256391": [59, 115], "2577": [59, 115], "258": 113, "25\u03bcm": [3, 47, 72], "26": 113, "2663": 100, "2667": [59, 115], "2668": [46, 52, 65, 69, 113], "2763": 59, "28": 113, "2800": 118, "280w": 89, "2810": 59, "282": [59, 115], "29": [22, 73], "2d": [0, 19, 34, 42, 43, 51, 57, 63, 67, 73, 86, 89, 92, 94, 95, 113, 126, 128, 132], "2p": 47, "2x2": 107, "2\u03bcm": [47, 118], "3": [4, 5, 6, 11, 14, 23, 27, 39, 43, 45, 46, 50, 51, 55, 56, 59, 76, 80, 100, 101, 102, 105, 106, 113, 114, 115, 117, 122, 125, 126, 128], "30": [11, 12, 19, 21, 49, 100, 131], "3000": 49, "3062": 113, "3078": 113, "308": 92, "3081": 113, "30gb": 117, "31": 11, "313": 59, "3150": 59, "3193": 113, "32": 105, "320": 85, "3208": 113, "32gb": [91, 117], "33": [3, 11, 47, 100], "334": 89, "3361": 113, "3363": 59, "3370": 113, "3394": 113, "34": [98, 99, 113], "3405": 113, "3417": 113, "346": 113, "348": 59, "35": 113, "352": 113, "3605": 113, "363": 59, "3630": 113, "365181": [59, 115], "37": 113, "370": 113, "374": 113, "377": 113, "37793": 89, "38c": 89, "39": 46, "394": 113, "397422": [59, 115], "39\u03bcm": 47, "3d": [0, 19, 34, 42, 43, 45, 46, 51, 53, 54, 65, 68, 75, 78, 80, 82, 84, 86, 87, 95, 97, 102, 104, 113, 120, 122, 123, 125, 127, 128, 129, 130, 131, 132], "3ng7n33r": 112, "3x3": 128, "4": [4, 10, 27, 43, 46, 51, 55, 60, 76, 89, 91, 92, 94, 99, 100, 113, 127, 129], "40": [9, 46, 49, 131], "4000": 49, "403": 113, "407": 113, "4080": 91, "40\u03bcm": 47, "41": [89, 113], "412": [6, 59, 115], "418": 89, "42": [22, 100, 113, 117], "421": [59, 115], "422": 113, "424": 113, "43": 113, "435693645163": [59, 115], "437": 59, "439": [59, 115], "44": 113, "444": 59, "44971595174": [59, 115], "45": [19, 113, 120], "450": 106, "456": 85, "457": 113, "46": 43, "460": 59, "460668": [59, 115], "461": 113, "468": 113, "47": 100, "477": 113, "48": 113, "480": 113, "481": 113, "492384": [59, 115], "494": 113, "497": [59, 115], "4983": 113, "4d": 113, "4iar": 112, "4\u03bcm": 47, "5": [4, 5, 6, 10, 19, 25, 46, 47, 51, 52, 55, 56, 59, 61, 62, 65, 69, 72, 76, 87, 92, 99, 100, 103, 106, 107, 113, 115, 117, 121], "50": [5, 46, 49, 61, 92, 98, 99, 100, 131], "500": [46, 103], "5000": [49, 51, 99], "500\u03bcm": 47, "5040": 113, "5058": 113, "50gb": 70, "50\u03bcm": 47, "528": 85, "5281": 51, "53": [89, 113], "531": 113, "532": 113, "534717": [59, 115], "535": 113, "54": [46, 52, 65, 69, 113], "543": 113, "547": 113, "550306": 89, "558": 113, "55w": 89, "56": 89, "560": 113, "56008346531": [59, 115], "561": [6, 59, 115], "565467": 89, "568": 113, "573": 113, "57638": [59, 115], "579125235589": [59, 115], "586": 59, "5891814": 51, "594": 113, "597768": [59, 115], "598": 113, "5pm": 20, "5\u03bcm": [118, 127], "6": [25, 43, 46, 51, 60, 76, 92, 94, 113, 120, 126, 128], "60": 131, "60000": 64, "601": 113, "6050": 100, "607": 113, "609": 113, "61": 113, "611487": [59, 115], "613": 113, "614387": [59, 115], "6173": 100, "637": 113, "639": 113, "64": [9, 61, 92, 105], "643": [59, 115], "644904": [59, 115], "65751": [78, 113], "663": 59, "679": 59, "6814116984": [59, 115], "686": [6, 59, 115], "690": 59, "6th": 18, "7": [25, 69, 105, 113, 128], "71": 43, "722443": 113, "723": 59, "733": 59, "738": 113, "75": 46, "752um": [46, 47], "752\u03bcm": 47, "755": 113, "7554": [78, 113], "76": 91, "762603": [59, 115], "764": 113, "765": 113, "773": 113, "7863": 113, "787601": 113, "7879": 113, "79": 33, "7927": 113, "7942": 113, "79954196884": [59, 115], "7th": 18, "8": [5, 39, 46, 91, 106, 113, 120], "8000": 51, "81": 113, "814": [6, 59, 115], "82": [6, 59, 113, 115], "837": 103, "84": 43, "842": [59, 115], "847336": 113, "849": [59, 115], "85": 43, "86": [113, 117], "866884": 113, "867": [52, 65, 69, 113], "876": 113, "880696": 113, "887": 113, "8gb": [91, 106], "8th": 18, "9": [39, 52, 65, 69, 91, 113, 128, 129], "90": [19, 42, 128], "917": [59, 115], "918987": [59, 115], "92320766585": [59, 115], "93": 113, "95": 76, "952479": [59, 115], "953052": [59, 115], "9579": 100, "966508": [59, 115], "97": 113, "99": 113, "997": 49, "A": [0, 2, 5, 6, 8, 11, 12, 15, 16, 17, 25, 27, 29, 30, 32, 42, 45, 46, 49, 50, 51, 52, 53, 55, 65, 67, 69, 73, 75, 78, 86, 87, 89, 91, 95, 104, 106, 113, 119, 125, 126, 127, 128, 129, 130, 131, 132], "And": 15, "As": [1, 11, 15, 16, 24, 25, 27, 28, 30, 39, 54, 65, 66, 83, 89, 90, 91, 97, 107, 120, 125, 126], "At": [28, 45, 53, 86, 131], "Be": [5, 14, 63], "By": [0, 14, 15, 24, 45, 50, 56, 72, 86, 93, 95, 104, 129], "For": [0, 5, 9, 14, 15, 17, 22, 23, 25, 27, 28, 33, 39, 45, 47, 49, 51, 53, 54, 56, 57, 58, 63, 64, 71, 73, 74, 80, 86, 90, 92, 93, 107, 118, 119, 121, 122, 125, 126, 131], "If": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 17, 20, 21, 23, 25, 37, 38, 39, 40, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 97, 98, 99, 100, 101, 103, 105, 107, 112, 116, 117, 119, 121, 122, 125, 126, 127, 128, 132], "In": [0, 2, 5, 7, 10, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 33, 38, 39, 44, 45, 47, 49, 50, 51, 53, 56, 74, 78, 79, 80, 84, 89, 90, 91, 98, 99, 107, 112, 115, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "Into": 119, "It": [0, 6, 7, 10, 11, 13, 14, 15, 16, 17, 23, 24, 25, 27, 28, 33, 34, 39, 40, 42, 43, 47, 53, 57, 59, 65, 68, 80, 82, 89, 95, 99, 101, 102, 103, 115, 116, 118, 124, 127, 128, 129], "NOT": 25, "No": [14, 129], "Not": 86, "On": [5, 79, 89, 105, 121, 125, 126], "One": [6, 11, 16, 23, 25, 104, 113], "Or": [23, 49, 57], "Such": 12, "That": [51, 86], "The": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 30, 33, 34, 37, 38, 39, 40, 42, 43, 45, 46, 47, 49, 50, 51, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 82, 85, 86, 87, 88, 90, 92, 93, 94, 95, 96, 98, 99, 100, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "Then": [25, 28, 79, 91, 95, 103, 124, 128, 130, 131, 132], "There": [10, 16, 23, 40, 42, 47, 49, 53, 54, 57, 62, 70, 71, 73, 95, 99, 119], "These": [3, 11, 24, 25, 27, 29, 33, 41, 45, 47, 56, 59, 63, 66, 73, 84, 90, 91, 92, 99, 106, 107, 115, 119, 123, 131, 132], "To": [0, 3, 6, 12, 16, 27, 28, 30, 31, 32, 33, 38, 45, 48, 49, 51, 53, 55, 59, 60, 61, 62, 64, 66, 67, 69, 70, 72, 73, 74, 76, 77, 78, 79, 82, 83, 85, 86, 88, 89, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 115, 117, 118, 119, 120, 125, 127, 128, 129], "Will": [11, 56, 112], "With": [0, 13, 27, 39, 79, 118, 127], "_": [28, 103], "__can": 82, "__file__": 86, "__init__": 28, "__main__": 45, "__name__": 45, "__version__": 45, "_cudadeviceproperti": 91, "_prepare_authors_field": 28, "a0": [46, 47], "aart": 113, "abba": 34, "abdu": [11, 112], "abisi": 112, "abl": [24, 27, 38, 53, 70, 73, 100, 127], "ablot": 112, "about": [15, 16, 17, 23, 24, 26, 27, 28, 40, 44, 45, 55, 56, 66, 68, 69, 84, 85, 86, 88, 101, 103, 110, 113, 114, 116, 117, 121, 122, 125, 126, 132], "abov": [25, 27, 28, 38, 39, 40, 45, 49, 51, 54, 60, 66, 85, 89, 94, 101, 107, 119, 130], "absenc": 113, "absolut": [23, 128], "absorb": [10, 11], "abstract": [27, 28, 56], "ac": 113, "academ": 56, "academi": 113, "acceler": [0, 106], "accept": [24, 51, 84], "access": [2, 12, 17, 24, 38, 40, 43, 49, 82, 83, 84, 97, 116], "accommod": 28, "accompani": 45, "accord": [51, 129], "accordingli": [25, 37], "accur": [52, 65, 69, 100, 113, 129], "accuraci": [9, 100, 113], "achiev": [24, 32], "ackel": 113, "ackground": 117, "acknowledg": 56, "acquir": [63, 100, 118, 129], "acquisit": 63, "acronym": [45, 49, 51], "across": [0, 2, 6, 11, 12, 13, 24, 27, 28, 30, 37, 66, 86, 113, 126, 127, 128], "action": [15, 25, 28, 32, 86, 113], "activ": [3, 8, 9, 23, 39, 56, 67, 70, 88, 91, 100, 101, 106, 112, 113, 118, 125, 126, 127, 129, 130], "actor": [78, 81, 83, 84, 86, 104, 120], "actual": [27, 45, 72, 83, 89], "acut": 113, "ad": [0, 1, 11, 17, 24, 25, 27, 33, 39, 42, 46, 81, 86, 132], "adam": [11, 20, 21, 23, 56, 64, 112, 114], "adamltyson": 112, "adapt": [0, 8, 11, 113, 127], "adc": [46, 47], "add": [23, 26, 28, 33, 43, 53, 54, 76, 78, 80, 82, 84, 86, 97, 101, 120, 122, 125, 126, 128, 130, 132], "add_additional_refer": 45, "add_brain_region": [82, 83, 86, 120], "add_label": 82, "add_silhouett": 82, "add_structure_to_view": 45, "add_to_view": 45, "addit": [0, 14, 17, 22, 23, 26, 28, 32, 33, 39, 45, 47, 49, 55, 69, 75, 77, 78, 79, 82, 85, 89, 95, 118, 119, 125, 129, 132], "addition": [0, 24, 54], "additional_depend": 33, "address": [0, 15, 16, 85], "adher": [22, 23], "adjac": 30, "adjust": [9, 54, 61, 90, 119, 121, 125, 126, 130, 131], "adkin": 113, "admba_3d_e11_5_mouse_16um": [46, 47], "admba_3d_e13_5_mouse_16um": [46, 47], "admba_3d_e15_5_mouse_16um": [46, 47], "admba_3d_e18_5_mouse_16um": [46, 47], "admba_3d_p14_mouse_16": [46, 47], "admba_3d_p28_mouse_16": [46, 47], "admba_3d_p4_mouse_16": [46, 47], "admba_3d_p56_mouse_25um": [46, 47], "admin": [25, 105, 106], "administ": 91, "adolf": 113, "adopt": [12, 26, 27], "adrien": 112, "adult": [3, 11, 34, 43, 46, 83, 113], "advanc": [3, 5, 11, 20, 21, 65, 70, 78, 87, 88, 113], "advantag": [11, 16, 24], "advertis": [26, 34], "advic": [11, 14, 91], "affect": [4, 10, 13, 16, 25, 27, 51, 105, 125], "affin": [55, 69], "aforement": 16, "after": [6, 19, 25, 29, 33, 37, 45, 59, 60, 64, 66, 83, 98, 99, 113, 127, 128, 130, 131], "ag": 46, "again": [1, 15, 25, 28, 39, 62, 74, 105, 119, 128], "against": [14, 25, 71], "agba": 113, "agenda": 23, "agnost": 8, "ahead": 73, "ai": [51, 113], "aim": [0, 2, 12, 19, 23, 24, 32, 43, 69, 84, 87, 110, 118, 121, 122, 127, 130], "airspe": 29, "aksel": 113, "aksoi": 113, "al": [2, 3, 8, 11, 12, 46, 61, 98, 99, 102, 113], "ala": 113, "alastruei": 113, "aldridg": 113, "alessandro": [11, 20, 21, 112], "alessandrofeld": 112, "alexi": 112, "algorithm": [0, 45, 56, 64, 65, 72, 87, 96, 113, 129], "ali": 113, "alias": 28, "align": [6, 11, 69, 74, 113, 123, 131], "all": [0, 1, 3, 4, 5, 7, 8, 10, 11, 16, 17, 23, 24, 25, 27, 28, 29, 32, 33, 36, 37, 40, 42, 43, 44, 45, 49, 51, 53, 56, 57, 61, 62, 68, 72, 73, 74, 75, 80, 82, 83, 84, 85, 86, 91, 95, 98, 99, 101, 103, 112, 113, 117, 118, 125, 126, 130, 131, 132], "all_citable_repositori": 28, "all_point": [66, 130], "allen": [0, 3, 11, 43, 46, 52, 65, 69, 72, 83, 102, 113, 118], "allen_cord_20um": [46, 47, 51], "allen_human_500um": [46, 47], "allen_mouse_100um": [46, 47, 49], "allen_mouse_10um": [46, 47, 77, 117, 119], "allen_mouse_10um_v0": 50, "allen_mouse_10um_v1": 45, "allen_mouse_25um": [46, 47, 48, 77, 117], "allen_mouse_50um": [47, 72, 83, 131], "allen_mouse_bluebrain_barrels_10um": [3, 46, 47], "allen_mouse_bluebrain_barrels_25um": [3, 46, 47], "allenmorphologi": 103, "allensdk": 79, "allow": [3, 6, 7, 8, 9, 11, 13, 16, 17, 23, 25, 27, 28, 29, 34, 39, 42, 44, 45, 46, 47, 51, 52, 59, 67, 69, 72, 76, 77, 86, 87, 92, 105, 115, 127, 128, 129], "almost": [11, 15, 84], "along": [51, 66, 73, 74, 76, 82, 84, 113, 119, 125, 127, 128, 129], "alongsid": [6, 20, 21, 42, 43, 122], "alpha": [86, 120], "alphabet": 72, "alreadi": [10, 28, 56, 62, 70, 82, 84, 85, 88, 99, 101, 105], "also": [0, 1, 4, 6, 7, 9, 10, 11, 14, 15, 16, 17, 22, 24, 25, 27, 28, 33, 38, 39, 40, 44, 45, 47, 48, 51, 52, 53, 55, 56, 57, 58, 62, 64, 66, 68, 69, 70, 72, 73, 75, 77, 78, 80, 82, 84, 86, 93, 101, 107, 116, 118, 119, 122, 127, 129, 130], "alsubai": 113, "altern": [0, 25, 28, 37, 38, 39, 40, 47, 52, 89, 129], "although": [23, 42, 48, 50, 63, 85, 116], "alwai": [7, 23, 25, 27, 44, 55, 82, 91, 101, 116], "am": [103, 117], "amap": 69, "ambystoma": [11, 47], "amedyukhina": 112, "amend": 93, "ament": 113, "ami": 113, "amongst": [2, 11, 28], "amount": [14, 30, 62, 91, 98, 99], "amphibian": [2, 11, 46], "amsalem": 112, "amygdala": 113, "amygdalar": 113, "an": [0, 1, 5, 9, 11, 13, 16, 19, 22, 24, 25, 26, 27, 28, 32, 33, 34, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 59, 61, 64, 65, 69, 70, 73, 74, 75, 80, 82, 83, 85, 86, 88, 89, 92, 97, 98, 99, 101, 106, 107, 113, 115, 116, 117, 118, 123, 125, 126, 128, 130], "anaconda": [91, 105], "anaesthetis": [127, 129], "analys": [6, 11, 14, 19, 28, 42, 43, 52, 54, 59, 62, 63, 65, 66, 73, 94, 95, 116, 117, 123, 125, 126, 129], "analysi": [0, 6, 7, 11, 14, 15, 16, 17, 18, 24, 29, 34, 39, 40, 43, 47, 52, 53, 65, 68, 85, 91, 97, 99, 101, 110, 113, 115, 118, 119, 123, 125, 126, 127, 129, 131], "analyz": 123, "anatom": [0, 8, 11, 43, 45, 50, 53, 55, 78, 85, 113, 128, 129], "anatomi": [11, 12, 45, 113], "anatomicalspac": 85, "andrad": 113, "andrea": [12, 112], "angular": 113, "ani": [0, 4, 10, 11, 13, 14, 15, 17, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 38, 39, 40, 41, 43, 44, 45, 47, 51, 54, 55, 59, 62, 64, 69, 70, 72, 73, 78, 80, 82, 84, 85, 90, 95, 105, 106, 112, 119, 128, 130, 132], "anim": [3, 11, 46, 78, 81, 82, 113, 127, 129], "anisotropi": 47, "anna": 112, "annex": 45, "annoi": [55, 91], "annot": [2, 8, 11, 12, 25, 34, 45, 46, 47, 50, 55, 69, 73, 75, 99, 100, 113, 119, 125, 132], "announc": [9, 11, 16, 17], "annual": 113, "anoth": [6, 16, 17, 44, 53, 55, 62, 72, 89, 105], "answer": [23, 44], "anterior": [6, 45, 55, 59, 74, 85, 107, 115, 128], "anterograd": 129, "antonin": 112, "antonio": 113, "anybodi": 73, "anyon": [24, 105], "anyth": [13, 14, 24, 37, 44, 62, 70, 80, 82, 83, 84, 105], "anywai": [10, 16, 105], "anywher": 117, "ap": [51, 112], "api": [0, 1, 11, 12, 13, 15, 16, 24, 26, 34, 38, 40, 42, 43, 45, 47, 50, 51, 52, 56, 65, 68, 69, 70, 78, 82, 85, 87, 88, 99, 101, 102, 103, 104, 110, 113], "apont": 113, "appar": 47, "appear": [5, 27, 43, 54, 63, 73, 86, 121, 122, 124, 125, 126, 128, 130, 131, 132], "append": 28, "appetit": 113, "appli": [30, 55, 69, 73], "applic": [3, 5, 6, 7, 42, 46, 49, 53, 63, 89, 99, 131], "approach": [0, 113], "appropri": [24, 25, 28, 47, 56, 59, 62, 65, 70, 106, 129], "approv": [23, 25], "approx": 116, "approxim": [9, 90, 99, 100, 128], "aquino": 113, "ar": [0, 1, 4, 5, 9, 10, 11, 14, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 60, 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 80, 82, 84, 85, 86, 89, 90, 92, 93, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 113, 117, 118, 119, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132], "arber": 113, "arbitrari": 43, "arbor": 59, "architectur": 113, "archiv": [4, 26, 40, 45, 100], "area": [3, 6, 11, 17, 28, 30, 50, 59, 62, 65, 66, 75, 91, 99, 105, 113, 115, 125, 126, 127, 128, 129], "aren": 23, "arginin": 113, "arginl": 113, "argument": [28, 45, 51, 56, 69, 86, 117], "argun\u015fah": 113, "aria": 113, "arm64": 23, "armand": 113, "arnaudon": 112, "aroca": 113, "around": [7, 24, 42, 43, 54, 82, 84, 86, 87, 94, 128], "arrai": [30, 45, 55, 57, 80, 84, 92, 125], "arrang": 128, "arrow": [27, 54, 122], "arshadi": 113, "artefact": [90, 95, 96, 99, 118, 119, 121], "articl": [28, 56], "artifact": [60, 62], "as_acronym": 49, "ascher": 113, "ascoli": 113, "ask": [23, 24, 28, 44, 49, 56, 66, 73, 91], "asl": [55, 62, 107], "aspect": 85, "aspir": 24, "asr": [74, 107, 128], "asr_align": 128, "asr_label": 128, "asri": 113, "assakura": 113, "assembl": 28, "assess": [99, 100, 119], "assign": [6, 43, 51, 59], "assist": [20, 21, 45, 113], "associ": 45, "assum": [23, 30, 67, 85, 107], "assumpt": 24, "astyanax": [8, 11, 47], "asv": 29, "asymmetr": [50, 74], "atac": 113, "athei": 113, "atla": [0, 1, 5, 6, 7, 11, 13, 19, 24, 34, 37, 42, 43, 48, 50, 51, 52, 53, 54, 56, 59, 65, 66, 69, 71, 73, 74, 75, 77, 78, 80, 82, 83, 101, 102, 103, 110, 113, 116, 117, 118, 119, 120, 123, 125, 126, 130], "atlas": [0, 1, 5, 24, 42, 43, 48, 49, 50, 52, 56, 65, 69, 70, 72, 83, 84, 85, 113, 128, 131, 132], "atlas_gener": [1, 45], "atlas_link": 45, "atlas_nam": [45, 51, 77, 82, 83], "atlas_packag": 45, "atlas_script": 45, "atlas_spac": [125, 127], "atlasapi": [0, 4, 11, 12, 17, 24, 31, 42, 43, 45, 56, 69, 101], "atlasgen": [11, 42, 43, 45], "atlasname_resolutionum": 45, "attach": 127, "attempt": [25, 39, 56, 60, 62, 94], "attent": 113, "attribut": 49, "aud": 51, "audiologi": 113, "auditori": 113, "augment": [98, 99], "author": [8, 27, 28, 46, 56], "autism": 113, "autocontrast": [125, 126], "autofluoresc": [63, 71, 95, 117, 118, 127, 129], "autofluroesc": [73, 118], "autom": [6, 34, 42, 43, 47, 52, 53, 87, 113, 125, 126], "automat": [4, 5, 11, 17, 25, 27, 28, 30, 33, 37, 38, 45, 99, 104, 113, 120, 128, 129, 130], "autophagi": 113, "avail": [0, 1, 2, 3, 8, 10, 14, 15, 17, 25, 28, 38, 40, 42, 45, 48, 49, 53, 56, 71, 72, 89, 91, 92, 100, 102, 103, 105, 114, 118, 129], "averag": [50, 74, 128], "avers": 113, "avoid": [8, 15, 24, 25, 28, 32, 40, 127, 128, 129], "avx": 89, "avx2": 89, "awai": [16, 27], "awak": 113, "awar": [5, 13, 14, 28, 46, 56, 116], "awesom": 84, "ax": [51, 55, 84, 85, 123, 128], "axel": [3, 11, 112], "axi": [74, 107, 113, 128], "axial": [63, 73], "axis_label": 55, "axolotl": [11, 46], "axon": [53, 104, 113], "azba": 46, "azba_zfish_4um": [46, 47], "b": [17, 25, 27, 54, 62, 75, 77, 105, 113, 117], "back": [23, 25, 42, 45, 56, 92, 97, 126, 128, 132], "backend": [7, 11, 14, 15, 16, 17, 28, 29, 39, 40, 42, 43, 69, 76, 83], "background": [26, 62, 63, 67, 86, 92, 94, 95, 97, 121, 122, 127, 129], "background_arrai": 92, "background_channel_imag": 62, "background_imag": 92, "background_image_directori": 92, "backslash": 100, "bahl": 113, "bakken": 113, "balanc": 113, "ball": [60, 94], "ball_filt": 30, "ball_overlap_fract": 92, "ball_xy_s": 92, "ball_z_siz": [30, 92], "band": 113, "bandrowski": 113, "bank": 113, "bao": 113, "bar": [25, 54, 121, 122, 124, 125, 126, 128, 130, 131, 132], "barrel": [11, 46], "barri": 113, "barrier": 0, "bartal": 113, "base": [0, 11, 16, 27, 28, 45, 47, 54, 56, 61, 65, 69, 73, 74, 75, 85, 92, 97, 98, 99, 105, 106, 107, 110, 113, 125, 129], "basi": [47, 56], "basic": [25, 34, 69, 78, 86, 106], "batch": [9, 30, 61, 91, 98, 99], "batch_siz": 92, "batsel": 113, "batti": 113, "baum": 113, "beauti": [0, 51, 86], "becaus": [10, 11, 23, 25, 30, 45, 64, 71, 83, 86, 89, 96, 128, 131], "becom": [15, 25, 39, 99, 129], "been": [1, 5, 6, 9, 11, 13, 16, 17, 24, 25, 26, 27, 30, 32, 33, 37, 38, 39, 40, 42, 45, 53, 54, 56, 62, 65, 106, 116, 119, 127, 129, 130], "beest": 113, "befor": [14, 16, 23, 25, 28, 33, 38, 39, 40, 45, 59, 64, 65, 70, 71, 72, 79, 80, 83, 84, 86, 91, 95, 97, 106, 116, 122, 128, 130, 132], "begin": [11, 13, 25, 30, 38, 77], "behav": 113, "behavior": [11, 12, 113, 129], "behaviour": [10, 104, 113], "behind": [14, 17, 80, 82, 99], "being": [0, 11, 15, 17, 27, 28, 30, 33, 40, 45, 76, 82, 86, 89, 90, 96, 121, 128], "belong": 45, "below": [2, 5, 8, 9, 11, 12, 17, 24, 27, 31, 39, 40, 45, 47, 52, 54, 59, 68, 74, 82, 91, 101, 103, 128, 132], "ben": [112, 113], "benchmark": [14, 17, 24, 29, 40, 42, 43], "bend": 76, "bendicht": 112, "benefici": 128, "benefit": [27, 44], "bennett": 113, "berchet": 112, "bernstein": 113, "bertha": 113, "best": [9, 23, 33, 44, 47, 99, 118, 128], "beta": 113, "better": [2, 11, 16, 47, 90, 98, 99, 116], "between": [9, 10, 13, 15, 16, 39, 51, 55, 73, 76, 86, 91, 94, 98, 99, 100, 105, 106, 113, 128, 129], "beyer": 113, "beyond": [4, 16, 27, 37, 40], "beyreuth": 113, "bg": [11, 17, 24, 25, 28, 42, 43, 51, 55, 56], "bg_atla": 49, "bgh": 51, "bgheatmap": 42, "bgi": 0, "bgspace": 85, "bhatia": 113, "bi": 23, "biapi": [59, 123], "bias": 128, "bibliographi": 56, "bibtex": [28, 56], "bibtex_fmt": 28, "bibtexentri": 28, "biccn": 113, "bigger": 91, "bimbard": 113, "bin": [76, 89], "binari": [73, 89], "bing": 113, "biolog": [23, 113], "biologi": [65, 87, 90, 99, 113], "biomed": [53, 113], "biophys": 113, "biorxiv": 113, "birman": 113, "bisi": [3, 11, 112], "bistabl": 113, "bit": [89, 105, 119, 128], "bjaali": 113, "bjerk": 113, "bkntr": 112, "blacher": 112, "black": [33, 82], "blackmor": 113, "blanch": 113, "blind": [11, 46], "blixhavn": 113, "blob": 53, "blog": [16, 17, 26, 39, 42, 111, 116], "blogpost": 47, "blood": [119, 127, 129], "blot": 112, "blue": [2, 8, 63, 67, 119, 128], "bluebrain": [46, 102], "blueski": 26, "board": 24, "bodenstein": 113, "bogdanowicz": 113, "bola\u00f1o": [3, 11, 47], "bold": 84, "bolkan": 113, "bollmann": 113, "bolota": 112, "bonapersona": 113, "bond": [11, 12], "bonn": 113, "bonnin": 113, "boorboor": 113, "bormann": 113, "bosch": 113, "bot": 25, "both": [0, 6, 7, 27, 28, 30, 32, 38, 39, 40, 42, 43, 44, 66, 82, 97, 105, 127], "bottom": [27, 45, 54, 74, 94, 95, 113, 126, 128, 130], "boucsein": 113, "boundari": [73, 75, 77, 119, 131], "bourdenx": 112, "bowler": 113, "box": [25, 27, 94, 97, 98, 122, 126], "br_class": 82, "bracei": 113, "brain": [0, 2, 5, 6, 8, 11, 12, 13, 15, 16, 18, 20, 21, 24, 30, 42, 43, 45, 46, 49, 50, 51, 52, 54, 59, 62, 63, 65, 66, 68, 69, 72, 73, 74, 75, 77, 78, 82, 83, 84, 85, 86, 87, 88, 91, 92, 99, 102, 103, 107, 113, 115, 117, 118, 119, 120, 123, 124, 125, 126, 128, 130, 132], "brain_align": 128, "brain_cell_detect": 123, "brain_geometri": 72, "brain_region": [86, 103], "brainglob": [0, 1, 4, 6, 7, 11, 15, 18, 22, 23, 25, 33, 34, 37, 41, 42, 43, 44, 47, 48, 49, 50, 53, 54, 57, 59, 65, 69, 70, 72, 73, 74, 75, 78, 79, 82, 83, 84, 85, 87, 92, 93, 106, 107, 109, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132], "brainglobe_atlasapi": [1, 45, 49], "brainglobe_heatmap": 51, "brainglobe_seg": 37, "brainglobe_segment": 37, "brainglobe_spac": 55, "brainglobe_tool": 28, "brainglobe_util": [5, 10, 28, 57, 64, 84, 92], "brainglobe_workflow": 29, "brainglobe_workflows_date_tim": 66, "brainglobeatla": [45, 46], "brainlin": 113, "brainmapp": [5, 11, 15, 17, 27, 32, 38, 40, 42, 58, 63, 64, 66, 67, 68, 90, 99, 101, 118, 119, 120, 123, 130], "brainmapper_output": 118, "brainreg": [0, 1, 2, 4, 6, 10, 11, 12, 14, 16, 17, 19, 24, 27, 28, 34, 39, 40, 42, 43, 52, 53, 54, 59, 66, 67, 70, 71, 72, 74, 75, 84, 85, 87, 88, 101, 107, 113, 118, 125, 126, 127, 129, 130, 131], "brainreg_date_tim": 75, "brainreg_napari": 37, "brainreg_output": 127, "brainrend": [0, 1, 2, 3, 4, 8, 11, 17, 19, 24, 27, 32, 34, 40, 42, 43, 45, 48, 51, 52, 54, 59, 66, 80, 81, 82, 83, 85, 86, 101, 102, 104, 110, 113, 115, 116, 124, 125, 130, 132], "brainrender_napari": 45, "brainstem": 113, "brainwai": 113, "brainwid": [6, 59, 65, 113, 116, 123], "branch": [23, 25, 28], "branco": [46, 52, 56, 65, 69, 78, 112, 113], "brannigan": 113, "break": [27, 28, 33, 39], "breakag": 14, "breakdown": 68, "brianmapp": 63, "bright": 118, "brighter": [130, 131], "brightli": 63, "bring": [4, 9, 11, 14, 20, 21], "brodersen": 112, "brought": 42, "brown": [69, 113], "brows": 128, "browser": 86, "brunner": 113, "brunwass": 113, "brush": [126, 128], "bsd": 56, "bu": 89, "buck": 113, "bug": [5, 14, 17, 23, 25, 42], "bugfix": [25, 33], "build": [0, 17, 25, 27, 34, 40, 101, 106, 110, 123], "builder": [43, 128], "built": [22, 35, 49, 89], "bukalo": 113, "bulb": [2, 107, 113], "bulk": [43, 53, 123], "bump": [25, 27, 33], "bundl": [13, 14, 17, 42, 45, 52], "bunyak": 113, "burdyniuk": 113, "buschman": 113, "busi": [16, 23], "button": [53, 54, 59, 94, 95, 98, 121, 124, 125, 126, 127, 128, 130, 131, 132], "c": [5, 9, 23, 25, 42, 43, 52, 65, 68, 69, 70, 82, 87, 89, 113], "ca1": 86, "cach": [23, 31, 104], "cahoon": 113, "cai": 113, "cake": 55, "calcul": [65, 76, 126], "california": 113, "call": [1, 11, 15, 17, 27, 28, 38, 40, 42, 44, 65, 68, 82, 86, 91, 105, 116, 118, 128, 130], "came": 99, "camera": [69, 81, 86], "campagn": 113, "campbel": [112, 113], "campu": [102, 103], "can": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 42, 44, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 76, 77, 78, 79, 80, 82, 83, 84, 86, 87, 88, 91, 92, 93, 94, 95, 97, 98, 99, 101, 103, 104, 105, 106, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "cancel": 89, "cancer": 113, "candid": [5, 30, 62, 66, 67, 95, 96, 97, 98, 99, 100, 119], "cannot": [17, 49, 61, 62, 101], "canva": [7, 97, 128], "cao": 113, "cap": 89, "capabl": [0, 106], "capit": 55, "captiv": [2, 11], "carandini": 113, "cardoso": 69, "care": [13, 14, 16, 45, 78, 84], "carefulli": [127, 129], "carei": 112, "carl": 113, "carlo": 112, "carlocastoldi": 112, "carrara": 113, "carri": [4, 11, 42, 43, 44, 67], "carrier": 113, "carter": 112, "cartoon": 5, "case": [5, 15, 16, 17, 23, 24, 25, 27, 28, 33, 37, 38, 39, 47, 53, 56, 63, 68, 74, 80, 84, 85, 89, 97, 118, 127, 128, 129], "cast": 30, "casta\u00f1eda": 113, "castoldi": 112, "cat": 127, "catalys": 0, "catarino": 113, "catch": [14, 28], "cater": 24, "caus": [5, 17, 28, 71], "cave": [8, 11], "cavefish": [11, 46], "cb": 51, "cc": 89, "ccf": [46, 113], "ccfv3": 47, "cd": [100, 118], "ceas": 16, "cell": [0, 5, 6, 9, 11, 16, 19, 24, 34, 40, 42, 43, 51, 55, 58, 62, 63, 64, 65, 66, 67, 68, 78, 80, 81, 87, 88, 96, 97, 98, 99, 100, 102, 113, 115, 117, 118, 119, 120, 122, 123], "cell_candid": 92, "cell_classif": [66, 99], "cell_def": 100, "cell_detector_3d": [42, 43], "cell_typ": 103, "cellboost": 113, "cellcentroidform": 113, "cellfind": [0, 1, 6, 7, 11, 17, 19, 24, 27, 28, 31, 32, 34, 37, 40, 42, 43, 44, 54, 59, 61, 64, 67, 75, 80, 89, 90, 93, 94, 98, 99, 100, 101, 105, 106, 110, 116, 123, 130], "cellfinder_cor": [15, 38, 40], "cellfinder_download": [5, 93], "cellfinder_napari": 15, "cellfinder_run": 92, "cellfinder_train": [99, 100], "cells_path": 120, "cellular": [6, 113], "censu": 113, "center": [51, 97, 126], "centr": [0, 20, 21, 30, 60, 92, 111, 112, 127], "central": [2, 11, 24, 30, 82], "centroid": 92, "cerebellar": 113, "cerebellum": [47, 107], "cerebrospin": 113, "certain": [16, 27, 63], "cff": 28, "ch": 49, "ch00": [117, 118, 119], "ch01": [117, 118], "chain": [25, 87], "chalatsi": 113, "challeng": [0, 11, 16], "chanc": 82, "chandrashekhar": 113, "chang": [1, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 23, 25, 27, 28, 33, 36, 39, 43, 45, 54, 55, 56, 60, 61, 64, 68, 71, 72, 74, 76, 78, 104, 105, 112, 113, 116, 119, 125, 126, 128], "changelog": [11, 16, 36, 39, 68], "channel": [26, 54, 62, 67, 72, 75, 77, 95, 97, 117, 118, 119, 121, 122, 127, 129], "charact": 28, "characterist": [11, 12], "charli": 112, "chart": 27, "chat": [23, 44], "chauhan": 113, "checcucci": 113, "check": [4, 10, 14, 17, 23, 25, 26, 28, 31, 32, 45, 56, 64, 69, 71, 73, 78, 80, 84, 85, 91, 95, 98, 107, 117, 128], "check_latest": 49, "checker": 33, "checkpoint": [98, 99], "cheeseman": 113, "chemic": 113, "chen": 113, "cheng": 113, "cheyn": 113, "chicchi": 113, "children": 45, "chili": 112, "chini": 113, "chiu": [112, 113], "choi": 113, "choic": [24, 47, 56, 104, 106, 118], "chon": 47, "choos": [12, 16, 22, 25, 45, 47, 54, 59, 70, 73, 93, 97, 98, 99, 101, 121, 122, 126, 129, 130, 131], "chosen": [23, 54, 56, 66, 73, 98, 99, 125], "chri": 112, "chrisroat": 112, "christian": 112, "chronic": 113, "chryssanthi": 112, "chrytsi": 112, "chu": 113, "chung": 113, "churchland": 113, "ci": [24, 25], "ciampi": 113, "circl": [119, 121, 126], "circuit": 113, "circuitri": 113, "circular": 10, "citabl": 56, "citat": [45, 58], "cite": [0, 46, 52, 56, 69, 78], "claar": 113, "clack": 113, "clash": 39, "class": [28, 45, 51, 58, 78, 81, 82, 84, 86, 103, 104, 119, 127], "classical_filt": 30, "classif": [5, 62, 66, 68, 88, 95, 96, 99, 100, 117, 118, 119, 123], "classifi": [90, 92, 95, 96, 97, 98, 99, 119], "classified_cel": 92, "claudi": [46, 51, 52, 56, 65, 69, 78, 112, 113], "claus": 56, "clean": [16, 23, 27, 29, 33, 38, 39, 40], "clear": [0, 5, 34, 47, 63, 71, 116], "clearer": 17, "clearmap": 34, "cli": [28, 40, 43, 73, 101], "click": [53, 54, 59, 73, 74, 77, 94, 95, 97, 98, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "cline": 113, "clipping_rang": 82, "clipping_valu": 30, "clone": [23, 25, 29, 79], "clopath": 113, "close": [42, 56, 61, 82, 83, 122, 125], "closest": 125, "clothier": 112, "cluster": [60, 70, 91, 94, 105, 113], "cmap": 51, "cn": [2, 11], "cniedwor": 112, "co": [7, 113], "coat": 127, "code": [1, 5, 10, 13, 14, 16, 24, 25, 27, 30, 33, 39, 40, 45, 56, 75, 78, 79, 82, 84, 113, 127], "codebas": [23, 37, 43], "codecov": 32, "coeff": 9, "coeffici": [47, 76], "cognit": 113, "col": 112, "colameo": 113, "cole": 113, "collabor": [0, 12, 99], "colleagu": 86, "collect": [1, 24, 28, 30, 43, 68], "colleg": [20, 21, 113], "collicular": 113, "colligan": 112, "colloqui": 27, "coloc": 113, "color": [45, 51, 86, 104, 120, 129], "colormap": [51, 54], "colour": [27, 119, 120, 126], "column": [3, 11, 47, 84], "com": [45, 79, 112, 128], "combin": [6, 13, 14, 17, 27, 37, 39, 43, 68, 76, 87, 88, 113], "come": [11, 13, 16, 25, 27, 43, 49, 52, 56, 57, 64, 67, 71, 74, 77, 89, 92, 93, 97, 107, 116, 119, 122], "command": [5, 6, 7, 11, 14, 15, 16, 17, 23, 24, 27, 28, 29, 38, 39, 40, 42, 43, 46, 47, 54, 56, 68, 69, 77, 83, 88, 93, 97, 99, 101, 106, 117, 118, 119, 121, 122, 123, 125, 128, 129, 132], "comment": [23, 45], "commit": [23, 25, 32], "common": [3, 6, 7, 11, 15, 27, 28, 40, 42, 43, 46, 47, 52, 53, 56, 57, 65, 68, 69, 90, 113, 129], "commonli": [47, 80, 84, 101], "commun": [0, 22, 26, 27, 41, 43, 69, 110, 112, 113], "companion": [13, 52], "compar": [0, 9, 24, 113, 115, 127], "comparison": [0, 9, 47], "compat": [5, 14, 27, 42, 45, 51, 53, 89, 120, 130], "compil": [24, 89], "complet": [1, 16, 17, 31, 47, 59, 69, 73, 89, 98, 99, 122, 130, 131], "complex": [6, 15, 16, 25, 27, 55, 59, 86, 115], "complic": [0, 16, 43, 49], "compon": 132, "compound": 129, "comprehens": 113, "compress": [45, 86], "compris": 27, "comput": [0, 3, 11, 23, 56, 65, 70, 76, 87, 88, 89, 90, 99, 105, 106, 110, 113, 116, 121, 122, 124, 125, 126, 127, 128, 129, 131, 132], "concern": [16, 31], "concret": 49, "conda": [3, 7, 8, 9, 23, 37, 42, 43, 45, 67, 68, 70, 79, 88, 91, 100, 101, 106, 108, 118, 121, 122, 125, 126, 127, 128, 129], "conduct": 23, "conf": [26, 45, 93], "confer": [113, 114], "confid": 101, "config": [33, 93], "configur": [33, 45, 91], "conflict": [38, 39, 40, 79, 101, 105], "confus": [15, 40, 42, 84], "confusingli": 17, "congruent": 113, "connect": [24, 49, 93, 113, 116, 129], "connectom": [0, 84, 113], "consequ": [13, 39], "consid": [13, 28, 39, 60, 91, 99, 113], "consider": [5, 43, 88], "consist": [17, 24, 25, 27, 30, 33, 40, 42, 43, 46, 49, 53, 78, 101], "consol": [62, 73, 89], "constantin": 113, "construct": 113, "constructor": 28, "consult": [90, 99], "contact": [0, 20, 21, 45], "contain": [2, 3, 4, 11, 13, 16, 17, 24, 25, 27, 28, 29, 30, 31, 37, 38, 45, 47, 49, 50, 57, 58, 63, 66, 75, 94, 95, 98, 118, 120, 124, 125, 127, 128, 129, 130, 132], "content": [0, 23, 28, 37, 45, 82, 86], "context": [53, 129, 130], "continu": [1, 7, 9, 11, 14, 15, 16, 22, 37, 38, 39, 98, 99], "continue_train": 92, "contrast": [54, 71, 113, 119, 125, 126, 130, 131], "contribut": [5, 24, 43, 56, 113], "contributor": [23, 24], "control": [24, 27, 54, 76, 106, 113, 122, 128, 129], "conv": 113, "convect": 85, "convei": 86, "conveni": [28, 42, 45, 49, 55, 80, 85], "convent": [14, 16, 17, 23, 24, 25, 28, 31, 42, 55, 128], "converg": 113, "convers": 40, "convert": 27, "convolut": 113, "cooper": 113, "coordin": [3, 6, 7, 11, 47, 49, 53, 54, 55, 59, 66, 67, 69, 72, 80, 81, 82, 85, 92, 95, 113, 115, 125, 127, 128, 129, 130], "coordinate_atlas_axis_0": 59, "coordinate_atlas_axis_1": 59, "coordinate_atlas_axis_2": 59, "coordinate_raw_axis_0": 59, "coordinate_raw_axis_1": 59, "coordinate_raw_axis_2": 59, "copi": [30, 56, 82, 113], "cord": [46, 113, 128], "core": [0, 5, 7, 11, 13, 14, 16, 17, 23, 24, 26, 27, 31, 34, 37, 39, 40, 42, 43, 44, 45, 62, 71, 72, 78, 89, 91, 94, 98, 110, 112, 117], "cornelison": 113, "corner": [22, 30, 54, 55, 74, 107], "cornuti": 113, "coron": [12, 87, 113, 118], "correct": [44, 45, 55, 69, 71, 90, 96, 99, 105, 106], "correctli": [16, 27, 33, 74, 97, 99], "correl": [9, 113], "correspond": [15, 16, 25, 28, 39, 45, 49, 50, 53, 68, 82, 85, 97, 128, 129], "cortex": [3, 11, 45, 46, 83, 103, 113, 119, 120], "cortic": 113, "cortico": 113, "corticocort": 113, "cort\u00e9": 113, "cossel": [52, 65, 69, 87, 112, 113], "costantini": 113, "could": [2, 8, 12, 25, 53, 64, 71, 119, 128, 130], "count": [9, 34], "counterpart": 25, "coupl": [25, 79], "cours": [19, 20, 21, 35, 114], "cover": [13, 20, 21, 24, 60, 63, 129, 131], "coverag": [32, 42], "cox": 113, "cpu": [5, 62, 72, 91, 94, 98, 117], "cpu_feature_guard": 89, "cramer": 113, "creat": [0, 2, 9, 11, 12, 16, 17, 25, 27, 28, 30, 33, 34, 38, 40, 42, 43, 45, 46, 51, 55, 56, 62, 66, 68, 73, 75, 78, 79, 80, 82, 83, 84, 86, 89, 97, 98, 99, 101, 102, 104, 120, 122, 125, 127, 128, 129, 130, 131], "create_mesh": 104, "create_region_mesh": 45, "creation": [0, 45, 78, 82, 101], "creator": [26, 45], "credit": 56, "criteria": [63, 103], "criterion": 24, "critic": 89, "crochet": 113, "crop": 55, "cross": [24, 25, 27, 32, 113], "crousseau": 112, "crucial": 0, "cruz": 113, "csv": [45, 59, 66, 75, 84, 95, 98, 99, 115, 125, 127, 130], "ctrl": 89, "cube": [45, 54, 61, 128], "cube_depth": 92, "cube_dir": 100, "cube_height": 92, "cube_width": 92, "cubic": [60, 66, 94, 125], "cuda": [23, 89, 90, 91, 105, 106], "cuda_dnn": 89, "cudnn": [89, 90, 105, 106], "cudnn_status_internal_error": 89, "cue": 113, "culp": 113, "culprit": 89, "curat": [45, 97, 122], "curated_cel": 97, "current": [10, 14, 16, 17, 24, 25, 27, 33, 38, 39, 40, 45, 46, 47, 56, 62, 63, 66, 68, 69, 72, 82, 85, 86, 93, 94, 99, 112], "cursor": 128, "custom": [45, 49, 66, 78, 82, 86, 93], "customis": [40, 62], "cut": [49, 51, 82], "cv2": 89, "cvf": 113, "cybernet": 129, "cylind": 80, "c\u00e9lian": 113, "d": [3, 8, 23, 25, 51, 75, 113], "dai": [19, 25, 46], "damag": [127, 128, 129], "damsteegt": 113, "dapi": 73, "dask": 57, "data": [2, 5, 6, 7, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 28, 29, 30, 31, 34, 38, 39, 40, 42, 43, 46, 47, 52, 53, 57, 59, 62, 64, 65, 66, 68, 69, 71, 72, 74, 75, 76, 78, 81, 82, 83, 86, 92, 96, 101, 102, 107, 113, 115, 116, 117, 118, 119, 121, 122, 123, 125, 126, 127, 130, 131], "datafram": [80, 84, 125], "dataset": [0, 34, 35, 45, 63, 65, 87, 88, 92, 95, 103, 104, 113, 116, 122, 123, 130], "dataset1": 64, "date": [25, 39, 125, 126], "datta": 113, "david": [11, 112], "davoudian": 113, "dawlei": 46, "de": 113, "deal": [46, 55, 118], "dealt": 73, "debt": 43, "debug": [25, 56, 60, 65, 66, 72, 75, 90, 94], "decemb": [18, 111], "decid": [27, 56, 57], "decis": [10, 11, 13, 39], "decorrel": 113, "decreas": [127, 129], "dedic": [0, 45, 78, 80], "deep": [0, 34, 65, 87, 90, 96, 99, 113], "deeper": [98, 99, 129], "default": [5, 9, 28, 29, 34, 45, 47, 49, 50, 56, 60, 61, 64, 72, 76, 77, 86, 89, 90, 92, 93, 94, 95, 98, 99, 104, 125, 130, 131, 132], "default_backend": 83, "default_download_directori": 92, "defin": [24, 28, 29, 34, 45, 46, 50, 55, 59, 73, 76, 82, 85, 86, 99], "definit": [62, 71, 72, 74, 106, 108, 118], "deform": [75, 76], "deformation_field_0": 75, "deformation_field_1": 75, "deformation_field_2": 75, "degre": [125, 128], "dehaqani": 113, "deisseroth": 113, "del": 112, "delai": 113, "delet": [5, 25, 38, 40, 125, 128], "delic": 127, "deliveri": 129, "demand": 0, "den": 113, "dendrit": [104, 113], "denni": 112, "denot": 84, "dens": 113, "densiti": [66, 115], "dentat": 113, "depend": [4, 7, 10, 11, 13, 14, 15, 16, 17, 23, 24, 25, 26, 33, 37, 38, 45, 49, 52, 61, 66, 70, 71, 73, 85, 91, 98, 101, 113, 117, 121, 124, 129], "deploy": [4, 11, 25], "deprec": [7, 15, 37, 39, 40], "depth": [30, 61, 98, 99, 100, 107, 125, 127], "der": 113, "deriv": [28, 46], "describ": [2, 3, 8, 12, 24, 25, 26, 28, 40, 45, 49, 50, 68, 72, 75, 85, 107, 127], "descript": [5, 23, 45, 49, 66], "deselect": 98, "design": [19, 78, 99, 113, 116], "desir": [25, 101, 127], "desktop": 91, "despit": 17, "detail": [3, 9, 11, 15, 18, 24, 26, 28, 38, 42, 45, 50, 56, 58, 70, 73, 75, 78, 80, 84, 85, 88, 90, 94, 101, 108, 117, 118, 128, 130], "detect": [5, 6, 9, 11, 16, 19, 28, 40, 42, 43, 59, 62, 63, 64, 65, 66, 67, 68, 87, 88, 96, 97, 98, 113, 115, 119, 120, 122, 123, 127, 130], "detected_cel": 92, "deterior": 24, "determin": [22, 52, 65, 69, 76, 113, 125, 127], "dev": [23, 29, 45], "develop": [0, 1, 4, 11, 13, 14, 15, 16, 26, 27, 29, 32, 34, 35, 39, 40, 42, 43, 44, 45, 46, 51, 52, 56, 65, 69, 78, 79, 87, 101, 110, 112, 113, 128], "development": [43, 46, 113], "deviat": [24, 60, 94], "device_count": 91, "diagnosi": 72, "dialogu": 27, "diamet": [60, 94], "diataxi": 22, "dichter": 112, "dict": [28, 45, 51, 104], "dictat": [28, 47], "dictionari": [45, 49, 51, 82, 84], "did": 26, "didn": [85, 101], "diebolt": 112, "diff": 33, "differ": [0, 2, 3, 8, 12, 14, 22, 25, 28, 45, 46, 47, 55, 63, 71, 78, 83, 85, 86, 87, 98, 99, 100, 104, 113, 115, 118, 119, 120, 122, 129, 132], "differenti": 113, "difficult": [6, 42, 43], "difficulti": [11, 16], "diffus": 47, "digit": 113, "dii": 127, "dim": [45, 126, 128], "dimens": [22, 30, 55, 60, 61, 62, 73, 75, 76, 85, 94, 95, 107, 113, 128], "dimension": [51, 113, 128], "dimidschstein": 113, "dimorph": 113, "dir": [57, 62], "direct": [10, 23, 51, 55, 74, 82, 85, 86, 113], "directli": [40, 46, 47, 49, 54, 58, 71, 79, 80, 82, 84, 88, 113, 129], "directori": [5, 6, 24, 31, 45, 50, 53, 54, 56, 57, 59, 62, 63, 66, 67, 72, 73, 75, 77, 86, 92, 93, 95, 97, 98, 99, 100, 115, 117, 118, 119, 121, 122, 125, 126, 127, 129, 130, 131], "disadvantag": 47, "disambigu": 13, "disc": 119, "discard": 51, "discern": 27, "discontinu": [24, 40, 65], "discoveri": 113, "discuss": [23, 41, 44, 45], "disk": [28, 53, 59, 117, 130], "disord": 113, "disp": 89, "displai": [6, 39, 59, 74, 83, 127, 130, 132], "disrupt": 93, "dissemin": [0, 86], "dissert": 113, "distanc": [76, 82, 125, 127], "distinct": [4, 11, 17, 24, 113, 128], "distinguish": [15, 16, 17, 128], "distribut": [6, 11, 25, 52, 53, 59, 65, 113, 116, 123, 126, 129], "diverg": [8, 11, 113], "divers": 113, "divid": [30, 49, 128], "dmnet": 113, "do": [0, 16, 17, 27, 30, 37, 38, 39, 40, 44, 46, 47, 54, 56, 62, 67, 68, 69, 70, 78, 83, 84, 86, 90, 91, 92, 97, 99, 101, 105, 110, 121, 122, 124, 125, 126, 128, 131, 132], "doc": [23, 27, 42], "dock": [54, 73, 95], "docker": [11, 14, 40, 65], "docstr": [22, 42], "document": [6, 9, 24, 26, 34, 40, 41, 42, 43, 51, 58, 68, 73, 84, 85, 87, 92, 107, 110, 121, 122], "dodd": 113, "doe": [3, 11, 24, 27, 28, 29, 33, 38, 43, 44, 45, 56, 63, 64, 105], "doesn": [3, 24, 25, 27, 44, 73, 76, 94, 95, 98, 118, 125], "doi": [46, 51, 52, 56, 65, 69, 78, 87, 113], "domain": 113, "domin": [3, 11, 113], "dominguez": 113, "don": [13, 14, 25, 29, 40, 44, 45, 46, 50, 51, 52, 56, 60, 62, 64, 65, 69, 70, 84, 92, 98, 99, 105, 116, 125, 126], "doncila": 112, "done": [15, 30, 51, 55, 70, 73, 78, 82, 101, 104, 125, 127, 128], "dopamin": 113, "dopaminerg": 113, "dorsal": [6, 8, 45, 59, 115], "doubl": [26, 71, 124, 128, 132], "down": [17, 27, 28, 74, 95, 121, 124, 126, 132], "download": [0, 1, 2, 3, 5, 8, 12, 45, 46, 48, 49, 50, 65, 69, 80, 83, 87, 92, 100, 102, 104, 106, 116, 123, 132], "download_dataset": 103, "download_neuron": 103, "downsampl": [54, 59, 66, 75, 76, 77, 128], "downsampled_atla": 75, "downsampled_image_nam": 75, "downsampled_standard_image_nam": 75, "downstream": 131, "dpf": 46, "dpshelio": 112, "draft": [23, 25], "drag": [45, 54, 59, 67, 73, 77, 95, 97, 119, 128], "draga": 112, "dragadoncila": 112, "dragavon": 113, "draw": [122, 125, 126], "drawio": 27, "drawn": [27, 126], "drive": [64, 97, 113, 116], "driven": 113, "driver": 89, "drop": [4, 28, 39, 45, 59, 67, 73, 95, 119, 128], "dropdown": [97, 130], "drug": 113, "drugowitsch": 113, "dstansbi": 112, "dual": 113, "duart": 113, "duckworth": 113, "dudok": 113, "due": [8, 11, 12, 13, 17, 24, 39, 71, 73, 83, 109, 112, 121], "dump": [28, 71], "duplic": [0, 24], "durand": 113, "durat": 129, "dure": [30, 45, 94, 113, 130], "duvel": 113, "dv": 51, "dwell": [3, 8, 11], "dweller": [8, 11], "dwi": 47, "dwivedi": 113, "dwo": [46, 47], "dyer": 113, "dynam": 113, "e": [0, 5, 6, 7, 20, 21, 23, 24, 26, 29, 33, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 86, 87, 89, 92, 94, 95, 97, 98, 99, 100, 104, 105, 107, 110, 113, 116, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130], "e0278053": 113, "e1009074": [65, 87, 113], "e11": 47, "e13": [46, 47], "e15": [46, 47], "e18": [46, 47], "e2114002119": 113, "e3001667": 113, "e65751": [78, 113], "e69825": 113, "e73162": 113, "e74758": 113, "e75703": 113, "e76254": 113, "e78811": 113, "e83496": 113, "e85488": 113, "eabj0112": 113, "each": [11, 15, 16, 17, 22, 24, 25, 27, 28, 30, 32, 33, 45, 46, 47, 49, 50, 51, 56, 59, 62, 63, 65, 66, 68, 73, 75, 76, 84, 86, 87, 92, 97, 98, 99, 100, 101, 115, 118, 125, 126, 127, 128, 130, 132], "earli": [23, 113, 128], "earlier": [26, 38, 122], "eas": 24, "easi": [23, 24, 34, 47, 71, 85, 116], "easier": [6, 24, 42, 43, 51, 70, 87, 105, 130, 131], "easiest": [6, 67, 86], "easili": [0, 2, 12, 17, 45, 55, 67, 77, 86, 119], "ecc": 89, "ecosystem": [0, 2, 3, 8, 12, 34, 43, 87], "eddison": 113, "edg": [30, 46, 61], "edit": [25, 27, 33, 86, 100, 126, 128], "editor": 113, "eeg": 113, "effect": [17, 27, 53], "effici": [25, 30, 87, 113], "effort": [0, 11, 15, 26, 86, 112], "effortlessli": 0, "eft": [118, 128], "eight": 47, "einhorn": [5, 112], "either": [11, 14, 38, 39, 49, 50, 53, 56, 79, 82, 89, 97, 98, 99, 117, 128, 129], "electr": 113, "electron": [0, 113], "electrophysiolog": 127, "electrophysiologi": 113, "element": [22, 55, 86, 107, 132], "elif": [78, 113], "elora": 113, "els": [16, 37, 44, 105], "elsewher": 123, "elucid": 129, "email": [44, 45], "emanpaoli": 112, "emb": [83, 86], "embed": [81, 113], "embryo": 47, "emerg": [8, 113], "emili": 112, "emilyjanedenni": 112, "emit": 24, "empir": 113, "empow": 113, "empti": 61, "en": 123, "enabl": [0, 2, 11, 42, 113], "enact": 38, "enassar": 112, "enclos": [64, 72], "encod": [27, 113], "encount": [25, 38, 55, 101], "encourag": [23, 27], "end": [2, 8, 16, 29, 39, 45, 59, 62, 78, 94, 117, 118, 121, 122, 128], "end_plan": 92, "energi": 76, "eneuro": 113, "enforc": 33, "engag": 110, "engelhardt": 113, "engert": 113, "engin": [34, 113], "englund": 113, "enhanc": [30, 46, 54, 60, 94, 113], "enjoi": [11, 17], "enlarg": 119, "enough": [23, 30, 49, 86, 121], "ensembl": 113, "enserro": 113, "ensur": [0, 3, 14, 15, 17, 23, 24, 25, 27, 32, 33, 40, 43, 45, 49, 53, 54, 61, 63, 72, 74, 78, 80, 85, 93, 94, 98, 99, 106, 121, 126, 127, 129, 130], "enter": [64, 71, 107, 118], "entir": [0, 17, 40, 63, 65, 85, 104, 116, 119], "entorhin": 113, "entrain": 113, "entri": [0, 25, 28, 29, 45, 56, 84, 100, 115], "enumer": 55, "env": [89, 101], "env_anm": 105, "env_nam": 105, "environ": [1, 3, 4, 7, 8, 9, 10, 11, 13, 17, 27, 37, 38, 39, 40, 45, 52, 56, 67, 68, 70, 79, 88, 91, 100, 101, 102, 106, 108, 113, 118, 121, 122, 125, 126, 127, 128, 129], "environment": 113, "envis": 27, "ep": 86, "epfl": 3, "epi": 113, "epoch": [92, 98, 99, 100, 122], "epp": 113, "equival": [7, 28, 29, 37, 55, 68], "eras": 128, "erdil": 113, "err": 128, "error": [25, 28, 33, 65, 69, 79, 90, 95, 113], "esc": 83, "escap": 113, "eshraghi": 113, "esmaeili": 113, "especi": [7, 45], "essenti": [45, 106, 127, 129], "establish": [0, 34, 112, 113, 129], "estel": 112, "estellenassar": 112, "estim": 128, "et": [2, 3, 8, 11, 12, 46, 61, 98, 99, 102], "eta": 100, "etc": [16, 23, 28, 34, 45, 46, 49, 52, 55, 73, 84, 86, 91, 99, 105, 118, 126], "ethan": 113, "even": [0, 40, 49, 61, 91, 99, 130], "event": [25, 56, 105], "eventu": 39, "ever": 37, "everi": [6, 23, 45, 59, 63, 66, 125, 130], "everyon": 24, "everyth": [16, 38, 43, 45, 51, 65, 80, 83, 91, 117], "everywher": 10, "evok": 113, "evolut": 113, "evolutionari": [8, 11], "evolv": [16, 24], "exact": 56, "exactli": [1, 11, 83, 125], "exampl": [0, 3, 5, 6, 11, 16, 17, 27, 28, 32, 40, 45, 51, 56, 57, 59, 64, 74, 78, 84, 86, 89, 103, 116, 117, 124, 127, 128, 129, 132], "example_mouse_100um": 47, "excel": [6, 42, 46, 115], "except": [17, 64], "exchang": 24, "excit": [9, 11, 113], "exclus": [1, 40, 76], "execut": 33, "exemplar": 40, "exhaust": 75, "exhibit": 113, "exist": [0, 7, 9, 15, 16, 27, 28, 42, 43, 44, 46, 47, 53, 56, 64, 87, 98, 99, 110, 129], "exit": 56, "expand": [45, 128], "expect": [17, 27, 28, 29, 56, 60, 63, 72, 80, 84, 94], "expens": [98, 99, 106], "experi": [0, 7, 23, 24, 27, 34, 105, 127, 129], "experienc": 7, "experiment": [0, 85, 113, 123, 129], "expertis": 24, "explain": 45, "explicit": [4, 27], "explicitli": [27, 56], "explor": [0, 49, 86, 113, 116, 119, 128, 131], "export": [27, 43, 59, 62, 78, 79, 81, 119, 120, 130], "expos": [24, 51], "express": [0, 24, 80, 113], "extend": 31, "extens": [25, 34, 56, 95, 97, 113, 130], "extern": [37, 45, 113, 129], "extra": [13, 129], "extract": [61, 84, 86, 100, 113, 127, 129], "extrem": 113, "ey": [39, 54, 77, 113, 116, 131], "eyesight": [8, 11], "f": [46, 51, 52, 55, 56, 65, 69, 78, 86, 113], "f1": 25, "f2": 25, "fa": [46, 47], "fabr": 113, "face": [28, 51], "facil": 91, "facilit": [0, 42, 43, 56, 78, 80, 84, 86, 102, 110], "fact": 85, "factor": [60, 94, 113], "fail": [33, 71, 73], "failur": [25, 56], "fairli": [86, 88], "faiss": 113, "falkner": 113, "fall": 60, "fals": [49, 86, 90, 91, 104, 119], "familiar": 24, "familiaris": 23, "fan": 89, "fanelli": 113, "fang": 113, "fanton": 113, "farrel": 113, "fashion": 16, "fast": [0, 116], "faster": [5, 91, 106, 128], "fastest": 116, "fastigi": 59, "fastmap": 113, "favil": 113, "favorit": 45, "favour": 7, "favourit": 45, "fear": 113, "featur": [3, 11, 16, 23, 25, 28, 33, 40, 43, 49, 55, 79, 83, 86, 105, 125, 126, 128, 130], "fed": 30, "fedeclaudi": 112, "federico": [51, 56, 112], "feed": 113, "feedback": [7, 19, 24, 41, 113], "feedforward": 113, "feel": [23, 27, 32, 44, 45, 105, 118], "feinberg": 113, "felder": [11, 20, 21, 112], "fen": 113, "fenno": 113, "fernandez": 113, "fernholz": 113, "ferreira": 113, "fertilis": 46, "fetch": [4, 10, 15, 24, 25, 32, 38, 40, 45, 56, 57, 68, 82, 101, 103], "fetch_from_github": 28, "fetch_neurons_metadata": 103, "fetcho": 113, "few": [0, 7, 16, 23, 24, 41, 42, 64, 78, 80, 82, 86, 100, 119, 125, 130], "ffmpeg": 79, "fibr": 125, "fiederl": [47, 113], "field": [11, 28, 103, 112, 113], "fig": [62, 127], "figur": [2, 3, 8, 12, 120, 127], "fiji": 34, "file": [5, 23, 24, 25, 26, 27, 28, 33, 45, 46, 49, 56, 57, 59, 60, 61, 62, 63, 65, 67, 69, 72, 73, 77, 80, 82, 84, 86, 89, 91, 92, 93, 94, 95, 97, 98, 99, 102, 103, 115, 120, 121, 122, 125, 127, 128, 130, 131], "filenam": [59, 121], "filepath": 64, "filippo": 113, "fill": [0, 74], "filter": [60, 63, 69, 94], "filter_region": 103, "filterbi": 103, "final": [15, 16, 23, 28, 45, 55, 62, 72, 82, 127], "find": [0, 4, 10, 13, 14, 15, 16, 26, 27, 28, 37, 46, 50, 51, 52, 53, 65, 68, 69, 72, 78, 84, 86, 87, 99, 110, 125, 127, 129], "fine": [24, 89, 128], "finer": 54, "finest": 45, "finish": [73, 97, 117, 130], "first": [2, 3, 4, 6, 8, 11, 13, 14, 22, 24, 27, 39, 42, 44, 45, 49, 52, 55, 61, 62, 73, 74, 75, 80, 82, 83, 85, 91, 103, 106, 107, 113, 118, 121, 122, 125, 126, 127, 128, 129], "firstli": [54, 67, 90, 96], "fish": [46, 51], "fisher": 113, "fit": [9, 27, 63, 76, 125, 127], "fix": [5, 23, 25, 40, 42, 45, 63, 64, 105, 113, 127], "flag": [27, 48, 54, 56, 67, 72, 75, 89, 93, 117], "flask": 113, "flatmap": 113, "flavor": 113, "flexibl": [0, 43, 113], "flexibli": 7, "flip": 55, "float": [30, 76], "float64": 30, "flowchart": 27, "fluid": 113, "fluoresc": [0, 11, 12, 95, 99, 113, 118, 123, 127], "fma": 89, "fo": 5, "focal": 82, "focal_point": 82, "focu": [14, 113, 125, 131], "focus": [42, 84], "folder": [24, 45, 63, 86, 125, 126, 128], "follow": [1, 2, 4, 5, 8, 9, 10, 11, 12, 17, 22, 23, 24, 25, 26, 28, 30, 31, 33, 39, 40, 45, 47, 48, 50, 52, 53, 54, 56, 59, 60, 62, 64, 72, 76, 89, 90, 91, 93, 95, 99, 100, 101, 105, 116, 118, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132], "foo": 25, "food": 113, "foot": 113, "forc": 27, "forebrain": [49, 132], "forelimb": 113, "forest": 113, "forg": [9, 23, 42, 43, 68, 70], "forget": [46, 52, 65, 69], "fork": [23, 45], "form": [27, 47, 87, 107], "format": [5, 12, 22, 25, 33, 45, 46, 51, 56, 57, 59, 73, 84, 86, 95, 113, 120, 130], "format_fmt": 28, "former": 7, "formerli": [52, 113], "fort": [52, 65, 69, 112, 113, 127], "forthcom": 13, "forum": [26, 44, 45, 66, 73, 95, 113], "forward": [3, 8, 10, 40], "foster": 113, "fotowat": 113, "found": [16, 23, 26, 30, 44, 48, 56, 62, 66, 82, 99, 112, 118, 120, 127], "four": [113, 128], "foustouko": 113, "fraction": [47, 60, 94, 98, 99], "frame": [86, 113], "framework": [0, 3, 7, 11, 22, 113], "franceschini": 113, "francesshei": 112, "francisco": 113, "frank": 113, "franklin": 47, "frankowski": 113, "frederiksen": 113, "free": [5, 14, 23, 32, 44, 45, 62, 72, 94, 98, 105, 113, 118], "freedom": 86, "freeform": 69, "freeli": 113, "frequent": [14, 17, 45], "fresh": [7, 9, 17, 39, 40, 68, 116], "freund": 113, "friedman": 113, "friedrich": 113, "friendli": [0, 24, 34, 87], "friendlyclearmap": 113, "from": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 23, 24, 28, 30, 32, 33, 37, 38, 39, 42, 43, 44, 45, 46, 49, 52, 54, 55, 56, 57, 59, 62, 63, 64, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 82, 83, 84, 85, 86, 88, 89, 92, 94, 95, 97, 98, 99, 101, 102, 103, 104, 105, 112, 113, 115, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 129, 130, 132], "frontal": [45, 51, 82, 85], "frontend": [7, 24], "frontier": 113, "frp": 51, "fuglstad": 113, "fulcher": 113, "full": [6, 11, 29, 36, 42, 43, 45, 47, 55, 59, 64, 69, 72, 76, 88, 89, 91, 98, 99, 118, 121, 122, 125, 126, 131], "fulli": [12, 23, 34, 42, 62, 78, 92], "function": [0, 1, 4, 7, 8, 10, 11, 12, 13, 14, 15, 16, 23, 24, 25, 27, 28, 29, 32, 34, 39, 40, 42, 45, 49, 51, 57, 58, 68, 70, 76, 80, 83, 84, 86, 92, 102, 104, 113, 129], "fund": 109, "fundament": [2, 12, 45, 127, 129], "funder": 0, "funderburk": 113, "funni": 16, "further": [16, 17, 27, 28, 34, 39, 40, 43, 48, 76, 108, 129], "furthermor": [23, 27], "fusion": 113, "futur": [3, 4, 8, 14, 17, 38, 40, 43, 63, 128], "g": [0, 5, 7, 20, 21, 23, 24, 26, 33, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 86, 87, 92, 94, 95, 97, 99, 104, 105, 110, 113, 116, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130], "gaba": 113, "gabaerg": 113, "gad1b": 132, "gadb1": 45, "gain": [2, 11, 129], "gait": 113, "galloni": 113, "game": 34, "gamma": 54, "gantar": 113, "gao": 113, "gap": 0, "gate": 113, "gaussian": [30, 60, 62, 76, 94], "gaussian_filt": 30, "gaze": 113, "gb": [62, 65, 116], "gd": 112, "gdoumou": 112, "geforc": 91, "gei": 113, "gene": [0, 80, 113], "gener": [0, 1, 2, 9, 22, 25, 26, 27, 28, 29, 31, 42, 43, 44, 51, 55, 57, 58, 59, 62, 63, 64, 74, 76, 78, 80, 82, 84, 90, 92, 95, 96, 98, 100, 109, 113, 120, 129, 130], "generate_ref_str": 28, "genet": 113, "genom": 113, "geometr": 113, "geometri": 127, "gerlei": 113, "get": [2, 3, 8, 10, 12, 23, 27, 39, 41, 49, 51, 55, 56, 59, 69, 70, 76, 79, 82, 83, 84, 85, 90, 91, 99, 100, 103, 105, 110, 112, 116, 118, 119, 121, 122, 132], "get_actor": 82, "get_cel": 92, "get_device_properti": 91, "get_fields_valu": 103, "get_neurons_by_structur": 103, "get_neurons_metadata": 103, "get_plan": 82, "get_plane_coordin": 51, "get_structure_ancestor": 49, "get_structure_descend": 49, "get_structure_mask": 49, "ghani": 113, "giad035": 113, "gigasci": 113, "gill": 113, "gin": [24, 26, 32, 45, 49], "girven": 113, "git": [25, 32, 33, 45, 79, 128], "github": [19, 20, 23, 24, 25, 26, 27, 28, 32, 33, 34, 39, 44, 45, 78, 79, 84, 86, 95, 102, 112, 128], "give": [41, 45, 49, 55, 56, 86, 117, 118], "given": [0, 5, 28, 45, 49, 51, 56, 60, 62, 82, 84, 94, 103], "glanc": 36, "glass": 126, "global": 76, "global_step": 89, "globe": [2, 12, 24], "globular": 113, "glutam": 113, "glutamaterg": 113, "go": [0, 10, 23, 24, 25, 40, 45, 73, 82, 84, 91, 97, 100, 101, 116, 117, 125, 126, 128], "goal": [0, 3, 8, 78, 86, 113], "goc": 112, "goe": [105, 128], "golden": 113, "golomb": 113, "gong": 113, "gon\u00e7alv": 113, "good": [2, 47, 49, 91, 99, 119, 121, 128], "googl": 113, "got": 1, "gpu": [9, 61, 88, 89, 91, 98, 108, 116, 117], "graf": 113, "graham": [11, 56, 112], "grai": 113, "grain": 24, "grammar": 113, "grant": 109, "graphic": [6, 7, 11, 16, 24, 34, 43, 48, 65, 70, 113, 116, 127, 128], "greater": [15, 106], "greatli": 5, "green": [8, 63, 86], "greenstreet": 113, "grei": [2, 8, 132], "grid": [76, 128], "grilli": 113, "groblewski": 113, "grosso": 112, "grow": [39, 43], "grown": 16, "gruver": 113, "gschwind": 113, "gu": 113, "guarante": [24, 101], "gubra": [46, 112], "gui": [7, 24, 27, 42, 54, 70, 74], "guid": [5, 27, 35, 44, 70, 88, 90, 97, 113, 118, 121, 122, 127], "guidelin": [4, 11, 27, 31], "guiet": 113, "guillaum": 112, "guillaumelegoc": 112, "gulsev": 113, "guo": 113, "gupta": 113, "gustison": [12, 47], "guthman": 113, "gz": [26, 45, 86, 128], "g\u00fcnther": 113, "h": [52, 56, 62, 65, 69, 72, 99, 113], "h5": 84, "ha": [1, 5, 6, 9, 10, 11, 13, 16, 17, 24, 25, 26, 30, 32, 33, 37, 38, 39, 40, 42, 43, 45, 47, 56, 60, 65, 66, 73, 75, 80, 82, 84, 86, 92, 99, 106, 117, 118, 119, 121, 127, 128, 129, 130], "haas": 53, "hackathon": 110, "had": [6, 11, 15, 40, 53], "hadawai": [12, 112], "hadwig": 113, "hagihara": 113, "hahn": 113, "half": [76, 82], "hallmark": 17, "halv": 76, "halves_align": 128, "hamburg": 113, "hammond": 113, "han": 113, "hand": [30, 54, 73, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "handl": [17, 37, 55, 80, 82, 89], "hang": 42, "hanganu": 113, "happen": [1, 11, 16, 17, 86, 95], "happi": [40, 45, 51, 86, 98, 99, 128], "harald": 112, "haraldreingrub": 112, "hard": [112, 116], "hardwar": 70, "harrahil": 113, "harri": [112, 113], "harrington": 113, "harth": 113, "hasn": 89, "hatch": 46, "hatter": 113, "haussler": 113, "have": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 17, 22, 23, 24, 25, 27, 28, 29, 30, 33, 34, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 54, 55, 56, 59, 62, 63, 64, 65, 68, 70, 72, 73, 74, 76, 77, 82, 83, 84, 86, 88, 90, 91, 97, 98, 99, 101, 103, 105, 106, 110, 116, 117, 121, 124, 125, 126, 128, 130, 132], "hdf5": [79, 121, 125, 126], "he": [5, 61, 98, 99, 113], "head": [16, 23, 25, 28, 40, 41, 84, 103, 113, 127], "health": 113, "heatmap": [1, 17, 24, 42, 62, 66, 101], "hecksher": 113, "hege": 113, "height": [22, 55, 61, 107], "held": 28, "heller": 113, "help": [14, 16, 23, 26, 34, 44, 48, 51, 56, 59, 66, 73, 79, 91, 95, 107], "helper": [28, 80], "hemisher": 49, "hemispher": [2, 45, 47, 50, 59, 72, 74, 75, 128, 130], "hemisphere_from_coord": 49, "hemisphere_l": 72, "hemisphere_r": 72, "hengen": 113, "here": [11, 23, 26, 34, 44, 45, 51, 58, 62, 64, 68, 73, 78, 80, 85, 89, 92, 100, 105, 106, 112, 118, 121, 127, 128, 129], "hernando": 112, "hernandomv": 112, "hesen": 113, "heterogen": 113, "heuvel": 113, "hidden": [5, 24, 50, 95], "hierarch": 84, "hierarchi": [45, 46, 50, 82], "hierarchy_lev": 49, "high": [0, 23, 24, 28, 40, 41, 61, 63, 69, 70, 71, 73, 77, 88, 99, 113, 116, 117, 127, 129], "higher": [4, 10, 45, 49, 76, 106, 128, 131], "highli": [3, 11, 128], "highlight": [26, 53, 97, 121, 122, 128], "hindbrain": [49, 113], "hing": 1, "hint": 132, "hip": 51, "hippocamp": 113, "hippocampu": 113, "hirokawa": 113, "histogram": 76, "histolog": 113, "histologi": [34, 113], "histopathologi": 113, "histor": [15, 24, 39], "histori": 23, "hit": [25, 27], "hnida": 113, "hoag": 113, "hobbiss": 113, "hoc": [25, 113, 127, 129], "hoeher": 113, "hold": [28, 126], "home": [5, 11, 14, 24, 32, 50, 93], "hood": [7, 27, 40, 51, 71], "hope": [15, 43, 63], "hopefulli": 106, "horizont": [51, 82, 85, 94, 95], "horst": 112, "horsto": 112, "host": [22, 23, 24, 25, 47, 109, 123], "hotfix": 25, "hou": 113, "hour": [5, 91, 99, 117], "housekeep": 16, "hover": [54, 128, 132], "how": [7, 9, 11, 13, 17, 23, 27, 28, 32, 38, 44, 51, 54, 60, 61, 66, 72, 73, 76, 78, 80, 84, 85, 86, 96, 98, 99, 100, 101, 106, 110, 113, 116, 118, 119, 121, 122, 125, 126, 127, 128, 129, 130, 131, 132], "howev": [0, 1, 3, 6, 11, 13, 14, 16, 19, 25, 27, 28, 29, 37, 38, 39, 40, 45, 47, 53, 56, 63, 68, 71, 82, 84, 85, 86, 92, 93, 99, 101], "hpc": 70, "hsu": 113, "html": [78, 81, 82, 123], "http": [45, 46, 51, 52, 56, 65, 69, 79, 87, 112, 123, 128], "huang": 113, "hub": [53, 73], "huffman": 113, "huge": [42, 103], "human": [2, 11, 28, 43, 46, 50, 56, 72, 99, 113], "hundr": 65, "hunt": 113, "huo": 113, "hussain": 112, "hwaun": 113, "hybridis": [8, 11], "hypothes": 113, "h\u00fcbener": 113, "i": [0, 11, 19, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 37, 39, 41, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 82, 83, 84, 85, 86, 87, 89, 90, 92, 93, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106, 107, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 122, 125, 126, 127, 128, 129, 130, 131], "ial": 107, "iar": 107, "iaroslavna": 112, "icon": [54, 77, 126, 128, 131, 132], "id": [33, 45, 50, 89, 103, 125], "idea": [41, 92, 99, 118, 119, 128], "ideal": [25, 26, 63, 86, 91, 116], "ident": [49, 70], "identifi": [0, 17, 45, 51], "idisco": [46, 47], "ieee": [113, 129], "iet": 113, "ignal": 117, "ignor": [56, 79, 86, 89, 105], "igor": [11, 21, 112], "igortatarnikov": 112, "ihc": 46, "ill": 16, "illustr": [27, 28, 84, 116, 118, 130], "imag": [0, 2, 5, 6, 8, 11, 13, 14, 19, 20, 21, 22, 24, 26, 27, 30, 40, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 58, 59, 61, 62, 65, 66, 69, 71, 72, 73, 74, 75, 76, 77, 81, 82, 85, 86, 87, 92, 94, 95, 97, 108, 113, 116, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 132], "image_directori": 57, "image_io": [10, 84], "imagej": [55, 107], "imagin": 82, "imio": [11, 42], "immedi": [23, 39, 113], "immunolabel": 113, "impact": [23, 113], "imper": 129, "implant": 113, "implement": [6, 8, 24, 28, 56, 62, 87, 113], "import": [5, 10, 14, 15, 23, 24, 26, 27, 28, 33, 37, 38, 40, 42, 43, 45, 47, 49, 51, 53, 55, 57, 83, 84, 85, 86, 91, 92, 103, 105, 120, 122, 127, 129], "importantli": 59, "importlib": 24, "imposs": 56, "improv": [6, 9, 17, 27, 40, 42, 69, 73, 76, 86, 95, 99, 118, 128], "imread": 92, "imshow": 55, "incid": 113, "includ": [5, 11, 16, 17, 23, 26, 27, 32, 33, 37, 38, 39, 40, 42, 43, 45, 46, 47, 54, 62, 69, 70, 71, 77, 82, 84, 86, 90, 98, 99, 121, 122, 125, 126, 128, 132], "incompat": [25, 27], "incomplet": 42, "incongru": 113, "inconsist": [17, 42], "incorpor": [0, 34, 53], "incorrect": [69, 71], "incorrectli": [97, 99], "increas": [9, 42, 61, 62, 72, 76, 91, 94, 98, 113, 119], "increasingli": [0, 85], "increment": [11, 17], "incub": 129, "inde": [29, 47], "independ": [5, 7, 24, 30, 62, 113, 127], "index": [45, 49, 55], "indic": [39, 82, 119, 124], "indispens": 0, "individu": [0, 5, 16, 17, 24, 27, 33, 40, 41, 59, 60, 73, 113, 128], "ineuron": 112, "infer": [33, 56, 91], "inferior": [47, 55, 74, 128], "info": [40, 46, 56, 73, 117], "inform": [4, 11, 22, 25, 26, 27, 28, 30, 40, 45, 49, 51, 54, 56, 66, 68, 76, 84, 86, 87, 112, 119, 121, 122, 125, 126, 130, 131], "informat": 113, "ing": 40, "ingredi": 45, "inherit": 28, "inhibit": 113, "inhibitori": 113, "initi": [0, 17, 44, 55, 56, 60, 89, 90, 99, 107, 110, 112, 128], "initialis": 120, "inject": [52, 63, 84, 113, 120, 126, 129], "injur": 113, "injuri": 113, "innat": 113, "input": [6, 53, 64, 72, 74, 75, 82, 99, 113, 128], "insensit": 28, "insid": [23, 30, 39, 68, 88, 122], "insight": [2, 11, 113], "inspect": [0, 103], "inspect_meshes_fold": 45, "inspir": 112, "instal": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 29, 33, 37, 38, 39, 42, 43, 45, 48, 53, 56, 72, 78, 89, 93, 95, 98, 108, 116, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "instanc": [24, 28, 53, 80, 82, 86, 104], "instanti": [28, 49, 55], "instead": [10, 15, 27, 37, 40, 47, 49, 51, 61, 105, 118, 122, 126], "institut": [0, 70, 91, 106, 109], "instruct": [2, 3, 8, 9, 12, 14, 15, 17, 26, 39, 40, 48, 52, 54, 64, 91, 101, 105, 106, 121, 122, 124, 125, 126, 127, 129, 131, 132], "insular": 113, "intact": 113, "integ": [25, 45], "integr": [22, 24, 42, 78, 82, 113, 129], "intend": [28, 37, 82, 85], "intens": [30, 60, 90, 94, 96], "inter": 16, "interact": [0, 1, 10, 11, 12, 13, 16, 27, 29, 46, 49, 74, 82, 86, 107, 113, 127], "interar": 113, "intercal": 113, "interchang": 28, "interdepend": [17, 27, 40], "interest": [2, 3, 8, 11, 24, 26, 29, 45, 73, 125, 126, 129], "interf": 32, "interfac": [0, 6, 7, 11, 12, 15, 16, 17, 22, 24, 27, 28, 34, 38, 40, 43, 46, 52, 56, 65, 68, 69, 70, 77, 87, 113, 116, 127, 128], "interfer": [24, 127], "interhemispher": 113, "interlink": 27, "intermedi": [29, 62, 72, 75], "intern": [15, 16, 37, 38, 40, 113], "internet": [28, 49, 93, 124], "interneuron": 113, "interoper": [0, 24, 27, 34, 45, 56, 101, 110], "interpol": [86, 125], "interpret": [42, 43, 56, 64, 72, 76], "interrupt": 89, "intersect": 51, "intra": 113, "intric": 129, "introduc": [20, 21, 25, 55, 127], "introduct": 108, "introductori": 128, "intuit": [6, 15, 24, 42, 43], "invari": 113, "invert": [30, 69], "investig": 113, "invok": 28, "involv": [2, 3, 6, 8, 11, 12, 13, 15, 55, 82], "io": [1, 4, 5, 17, 28, 58, 59, 92, 122, 123], "iordanid": 113, "ipr": 55, "irradi": 113, "irrespect": 23, "is_avail": 91, "ischemia": 113, "iscienc": 113, "isn": [6, 39, 42, 44, 64, 105, 128], "iso": 113, "isocortex": [3, 11], "isosurfac": 84, "isotrop": 128, "isra": 113, "issta": 113, "issu": [7, 15, 16, 40, 44, 45, 50, 72, 75, 89, 90, 101], "item": [23, 104], "iter": [6, 99], "ito": 113, "its": [3, 4, 7, 11, 13, 15, 16, 17, 23, 24, 28, 38, 42, 45, 49, 52, 54, 56, 74, 82, 84, 113, 116, 128, 129, 130], "itself": [13, 24, 25, 27, 28, 30, 38, 66, 69, 101], "iurilli": 113, "j": [65, 69, 87, 113], "jacinta": 113, "jacob": 113, "jag": 5, "jahn": 113, "jaimergp": 112, "jame": 113, "janarthanan": 113, "jane": 112, "janelia": [102, 103], "jare": 113, "java": 69, "jcbfm": 113, "jiao": 113, "jin": 113, "jingji": [112, 127], "job": 33, "joe": 112, "joeziminski": 112, "johanna": 113, "johansson": 113, "join": [16, 23, 125], "jone": 113, "jonsson": 113, "jord\u00e1": 113, "jorg": 69, "joss": [46, 52, 56, 65, 69, 113], "journal": [46, 52, 56, 65, 69, 87, 113], "journei": [11, 15], "jo\u00ebl": 113, "jpg": 86, "json": [45, 46, 50, 66, 75, 80, 84], "juanma9613": 112, "judkewitz": 113, "jule": [74, 112], "julesschol": 112, "julia": 113, "jump": 16, "june": 111, "jung": 112, "jupyt": [78, 81], "just": [2, 4, 5, 10, 15, 16, 17, 25, 28, 38, 40, 42, 45, 49, 67, 70, 78, 80, 82, 86, 93, 97, 100, 105, 117, 118, 128, 130], "justin": 112, "juvenil": [2, 11], "k": [112, 113], "k3d": [83, 86], "kailyn": 112, "kailynkfield": 112, "kalteneck": 113, "kanodia": 113, "kantor": 113, "kapoor": 113, "karali": 113, "karayanni": 113, "karsh": 113, "kasri": 113, "katharina": 113, "kaufman": 113, "kclamar": 112, "keep": [11, 15, 24, 25, 37, 39, 45, 51, 55, 56, 60, 61, 78, 98, 99, 104, 105], "kei": [0, 3, 7, 8, 11, 16, 17, 28, 45, 47, 49, 54, 86, 99, 122], "kepec": 113, "keppler": 113, "kept": [32, 51], "kera": [98, 122], "kernel": 30, "keshavarzi": [65, 87, 112, 113, 118], "ketamin": 113, "keyboard": [82, 86, 122, 130], "keyfram": 86, "kieslich": 113, "kiggin": 112, "kim": [46, 112, 113], "kim_dev_mouse_idisco_10um": [46, 47], "kim_dev_mouse_mri_a0_10um": [46, 47], "kim_dev_mouse_mri_adc_10um": [46, 47], "kim_dev_mouse_mri_dwi_10um": [46, 47], "kim_dev_mouse_mri_fa_10um": [46, 47], "kim_dev_mouse_mri_mtr_10um": [46, 47], "kim_dev_mouse_mri_t2_10um": [46, 47], "kim_dev_mouse_stp_10um": [46, 47], "kim_mous": 5, "kim_mouse_100um": [46, 47], "kim_mouse_10um": [46, 47], "kim_mouse_25um": [46, 47], "kim_mouse_50um": [46, 47], "kimberli": 112, "kind": [55, 63, 105, 119, 132], "kinet": 113, "king": 113, "kintscher": 113, "kjungwoo5": 112, "kleinfeld": 113, "kleven": 113, "knit": 14, "knock": [17, 27], "know": [7, 13, 34, 40, 44, 45, 49, 52, 62, 69, 70, 78, 85, 93, 105, 117, 118, 125, 126, 127], "knowledg": 110, "known": [11, 13, 16, 28, 42], "koch": 113, "kochubei": 113, "kofler": 113, "kolaxi": 113, "kolluru": 113, "kondo": 113, "kostka": 113, "koushik": 112, "kozol": [8, 11, 47, 112], "kraus": 113, "kronman": 113, "krubitz": 113, "kunkhyen": 113, "kunst": [102, 112], "kuo": 113, "kuyat": 113, "kwan": 113, "l": [46, 52, 56, 65, 69, 74, 78, 87, 113, 118, 128], "l2": 113, "l5": 113, "la": 113, "lab": [8, 11, 46, 112], "label": [0, 5, 9, 27, 45, 49, 50, 51, 53, 55, 63, 65, 66, 77, 80, 82, 87, 91, 94, 95, 97, 99, 118, 126, 127, 128, 129], "laboratori": 113, "lai": 45, "laid": 45, "lami": 113, "lammer": 112, "landesbibliothek": 113, "languag": 39, "laplac": 30, "laplacian": [30, 60, 94], "laptop": [20, 21, 24, 70], "larg": [0, 3, 11, 17, 19, 34, 43, 45, 86, 87, 88, 92, 95, 98, 99, 113, 116], "larger": [11, 12, 98, 99, 128], "largest": [60, 94], "larkum": 113, "larval": 83, "last": [22, 25, 62, 106], "lastli": [52, 65, 69, 73], "later": [2, 6, 15, 30, 38, 39, 40, 45, 53, 59, 73, 77, 88, 93, 97, 99, 105, 113, 115, 125, 126, 128], "latest": [1, 5, 12, 24, 25, 27, 38, 40, 42, 45, 68, 105, 123], "latest_vers": [26, 45], "latter": [7, 25], "launch": 124, "laura": [20, 112], "lauraporta": 112, "lauridsen": 113, "lavian": 113, "layer": [6, 24, 42, 43, 45, 49, 54, 59, 73, 92, 94, 95, 97, 100, 113, 115, 119, 121, 122, 125, 126, 128, 129, 130, 131, 132], "layerlist": 128, "lazcano": [2, 11, 47], "lcossel": 112, "le": 112, "lead": [8, 76], "learn": [0, 19, 34, 61, 65, 78, 87, 90, 96, 98, 99, 113], "learning_r": 92, "least": [10, 12, 24, 25, 27, 68, 98, 106], "leav": [5, 42, 43, 45, 56, 62, 72], "lebedeva": 113, "led": 112, "lee": [112, 113], "left": [22, 49, 50, 54, 55, 59, 72, 73, 74, 94, 95, 107, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "left_cell_count": [6, 59, 115], "left_cells_per_mm3": [59, 115], "left_volume_mm3": [59, 115], "legaci": 16, "len": 92, "length": [30, 33, 45, 127], "lenzi": [52, 65, 69, 112, 113], "less": [15, 30, 117, 118, 125], "let": [7, 25, 34, 52, 69, 78, 86, 106], "letter": [73, 128], "level": [11, 15, 24, 25, 27, 28, 40, 41, 45, 49, 73, 113], "leverag": [0, 34, 129], "li": [112, 113, 127], "libbi": 113, "librari": [10, 33, 34, 49, 90], "licens": 56, "lidakanari": 112, "lie": 128, "light": [11, 12, 102, 113], "lightsheet": [20, 21, 47, 63, 87], "lightweight": [102, 113], "like": [0, 2, 3, 5, 7, 8, 12, 13, 14, 16, 17, 25, 28, 29, 33, 34, 41, 44, 49, 51, 57, 59, 62, 64, 65, 67, 73, 80, 82, 84, 85, 88, 90, 91, 92, 93, 95, 99, 100, 102, 103, 105, 115, 116, 117, 120, 125, 126, 128, 131, 132], "likewis": 40, "limbic": 113, "limit": [16, 17, 42, 47, 54, 64, 70, 71, 86, 91, 94, 130, 131], "limog": 113, "lin": 113, "line": [4, 5, 6, 7, 11, 14, 15, 16, 17, 24, 27, 28, 29, 33, 38, 39, 40, 42, 43, 45, 46, 47, 56, 57, 68, 69, 77, 80, 82, 84, 86, 93, 97, 99, 113, 117, 118, 121, 122, 123, 125, 129, 132], "lineactor": 42, "lineag": 113, "linear": 9, "link": [25, 26, 31, 40, 45, 68, 95, 101, 116], "lint": [25, 32], "linux": [105, 106, 118], "list": [4, 16, 27, 28, 37, 39, 40, 45, 47, 48, 49, 53, 56, 66, 72, 73, 75, 82, 84, 92, 103, 106, 113, 115, 118, 128, 130, 132], "littl": [16, 77, 128], "liu": [112, 113], "live": [16, 24, 32, 41], "ll": [4, 10, 15, 23, 28, 40, 45, 84, 89, 103, 115, 116, 117, 118], "lmu": 113, "load": [5, 15, 28, 37, 45, 49, 53, 59, 66, 67, 69, 74, 77, 78, 80, 86, 98, 103, 104, 120, 121, 122, 125, 126, 127, 129, 130, 131], "load_ani": [57, 84], "load_from_fold": 57, "load_img_stack": 57, "load_neuron": 103, "load_nii": 57, "loc": 103, "local": [24, 29, 32, 45, 49, 76, 83, 91, 94, 113], "localis": [3, 11, 127], "locar": 113, "locat": [0, 5, 17, 28, 34, 40, 49, 52, 65, 69, 78, 80, 93, 113, 127, 129], "locomotor": 113, "log": [55, 60, 66, 72, 75, 77, 89, 94, 98, 99], "log_sigma_s": 92, "logdir": [98, 99], "logic": 24, "london": [20, 21, 113], "long": [2, 11, 15, 23, 29, 39, 43, 45, 56, 73, 82, 89, 113, 116, 117, 118, 124], "longer": [5, 10, 11, 13, 14, 15, 17, 37, 39, 98, 99, 125, 126], "longitudin": 113, "look": [2, 3, 8, 14, 15, 25, 42, 44, 45, 64, 65, 82, 86, 96, 115, 116, 119], "lookup": 101, "loos": 24, "loss": [100, 113], "lot": [4, 5, 11, 23, 42, 43, 73, 84, 86, 97, 98, 100, 128], "low": [64, 118, 128, 130, 131], "lower": [11, 15, 25, 30, 49, 117, 125, 127, 128, 132], "lowest": 128, "lowet": 113, "lsa": 55, "lsfm": 46, "lstm": 113, "lu": 113, "lucero": 113, "lui": 47, "luigi": [51, 56, 112, 114], "lumbar": 113, "lupori": 113, "luviano": 113, "ly": 113, "lyon": 113, "lz": 51, "l\u00fcthi": 113, "l\u00fctje": 113, "m": [25, 27, 33, 37, 52, 65, 69, 87, 89, 112, 113], "ma": 113, "mabri": 113, "mac": [79, 121, 125, 126], "macaskil": 113, "macdowel": 113, "machin": [17, 23, 29, 32, 40, 45, 49, 61, 62, 70, 72, 88, 91, 94, 98, 105, 106, 113, 116, 117, 130, 131], "maco": [23, 68, 70, 105, 106], "madangop": 113, "made": [2, 5, 10, 11, 13, 15, 23, 25, 30, 51, 56, 112, 132], "magicgui": 24, "magnet": [2, 11, 47], "magnifi": 126, "mai": [2, 5, 7, 23, 25, 26, 27, 28, 37, 38, 41, 44, 45, 47, 50, 58, 59, 64, 66, 70, 71, 74, 75, 79, 83, 86, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 100, 101, 107, 113, 114, 116, 117, 121, 122, 123, 124, 125, 126, 128, 132], "main": [23, 25, 28, 30, 39, 40, 45, 47, 64, 66, 67, 73, 84, 85, 92, 97, 117, 127], "mainli": 56, "mainprocess": [73, 117], "maintain": [9, 10, 11, 15, 16, 23, 24, 25, 42, 43], "mainten": [7, 11, 24, 42], "major": [0, 16, 27, 33, 58, 71, 80, 91, 119], "make": [0, 2, 3, 6, 8, 12, 15, 16, 23, 24, 25, 26, 28, 33, 38, 39, 42, 43, 45, 51, 54, 56, 59, 67, 68, 70, 73, 82, 83, 85, 86, 88, 91, 98, 99, 100, 101, 105, 106, 117, 119, 125, 126, 127, 128, 129, 130, 131], "mame": 113, "mammalian": 113, "man": 129, "manag": [4, 6, 10, 16, 39, 40, 101, 105, 124], "mani": [0, 5, 6, 17, 23, 32, 43, 46, 47, 53, 57, 58, 59, 62, 65, 67, 69, 70, 71, 73, 75, 76, 78, 84, 85, 91, 95, 98, 99, 112, 121, 125, 127, 128, 132], "manifest": [25, 113], "manipul": [22, 27, 113], "manner": [14, 17, 40, 101, 129], "manual": [4, 9, 10, 14, 16, 17, 25, 27, 33, 40, 53, 63, 99, 100, 123, 125, 127, 128, 130], "manuscript": 113, "map": [11, 12, 34, 46, 50, 51, 55, 113], "map_points_to": 55, "map_stack_to": 55, "mapped_annot": 55, "mapped_stack": 55, "marbach": 113, "march": [45, 111], "marco": [51, 112], "marcomusi": 112, "margin": 128, "margri": [46, 52, 56, 65, 69, 78, 87, 112, 113], "mark": [30, 56, 64, 72, 97, 113, 122], "marker": [52, 63, 65, 69, 113], "martin": 112, "martineau": 113, "martinez": 112, "mask": [30, 45, 62, 128, 129], "maskari": 113, "mason": 113, "mass": 113, "mastodon": 26, "match": [25, 28, 59, 61, 66, 68, 84, 92, 100, 103, 127], "mateo": [112, 127], "matham": 112, "mathieu": 112, "mathieubo": 112, "matho": 113, "matia": 113, "matplotlib": [49, 51, 55, 107], "matric": 55, "matrix": 55, "matt": [5, 112], "matter": [73, 118], "matthew": 113, "max": [45, 46, 60, 62, 94], "max_cluster_s": 92, "maximilian": 112, "maximum": [33, 62], "mayb": [64, 91], "mazzamuto": 113, "mazziotti": 113, "mcclure": 113, "mcgovern": 113, "mckee": 113, "mckenna": 113, "mcmannon": 113, "mcnulti": 113, "me": 105, "mean": [7, 11, 12, 15, 16, 24, 25, 28, 30, 33, 51, 55, 56, 60, 72, 73, 74, 84, 86, 89, 94, 99, 118, 128], "meantim": 124, "mechan": 113, "mechano": 113, "mechanosensori": 113, "medero": [112, 129], "medfilt2d": 30, "media": [0, 64], "medial": [59, 113], "median": 30, "mediat": 113, "medic": [111, 113], "medicin": 113, "medium": 111, "mediumseagreen": 120, "medulla": [59, 113], "medyukhina": 112, "meech": 112, "meechan": 112, "meet": 23, "mehra": 113, "meijer": 113, "mejia": 113, "melin": 113, "member": [34, 45], "membran": 53, "memori": [30, 61, 89, 91, 106, 113], "mendez": 113, "meng": 113, "mention": [16, 28, 38, 39], "menu": [37, 52, 95, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132], "merg": [11, 16, 17, 23, 25, 26, 27, 30, 38, 40, 42, 45], "mesh": [2, 8, 46, 50, 55, 80, 82, 84, 102, 104, 132], "mesh_from_structur": 49, "mesh_util": 45, "meshfile_from_structur": 49, "meshio": 49, "mesolimb": 113, "mesoscal": [0, 113], "mess": 105, "messag": [23, 25, 26, 56, 65, 69, 79, 90], "messi": 24, "meta": [4, 10, 17, 24, 25, 31, 40, 56], "metacel": 112, "metadata": [28, 45, 46, 50, 56, 71, 103], "metapackag": [5, 11, 24, 27, 42], "metaplugin": [42, 43], "metatata": 49, "method": [11, 12, 25, 28, 49, 53, 72, 80, 81, 83, 84, 86, 105, 113, 118, 125, 126, 129], "mexican": [11, 46], "mexicanu": [8, 11, 47], "mexicanum": [11, 47], "mice": [3, 11, 47, 113, 127], "michael": [56, 112], "michelon": 113, "michki": 113, "micoli": 113, "microanalysi": 113, "microglia": 113, "micromanipul": 127, "micromet": 45, "micron": [5, 46, 49, 51, 59, 61, 62, 85, 92, 94, 95, 107, 118], "microscop": 99, "microscopi": [11, 12, 18, 34, 47, 52, 63, 65, 69, 91, 92, 99, 113, 123], "microsoft": [89, 115], "microtu": [11, 47], "mid": 82, "midbrain": [49, 113], "middl": 67, "midplan": 128, "might": [7, 25, 27, 40, 49, 56, 79, 80, 84, 85, 86, 100, 127], "migrat": [11, 14, 15, 38, 40], "miller": 113, "millimet": 128, "millimetr": 66, "million": 5, "millisecond": 113, "min": 19, "mind": [24, 27, 56, 104], "minh": 113, "miniconda": [70, 88], "miniconda3": 89, "minim": [16, 78, 129], "minima": 76, "minimis": 25, "minimum": [22, 27], "minor": [4, 5, 11, 27, 33, 91], "minut": [24, 73, 86, 100], "mirow": 113, "mirror": 23, "mishchanchuk": 113, "mismatch": 85, "miss": [28, 42, 128], "misspel": 64, "mitosi": 113, "mitra": 113, "mitrevica": 113, "mittal": 113, "mix": [43, 113], "mixtur": 100, "miyazaki": 113, "mi\u00f1ano": 112, "mkunst23": 112, "mlapi": 103, "mm": [76, 115], "mo": [51, 86, 103], "mock": 32, "modal": [0, 24, 47], "modat": 69, "mode": [5, 72, 125, 126, 130], "model": [0, 2, 5, 8, 9, 11, 12, 19, 24, 61, 63, 65, 87, 92, 94, 98, 99, 113, 122], "model_weight": 92, "modern": [24, 61, 91, 106], "modifi": [40, 45], "modul": [28, 37, 113], "modular": [11, 16, 24], "mohammad": 113, "mohan": 113, "moissidi": 113, "molecular": [113, 127], "moment": 82, "monosynapt": 113, "montgomeri": 113, "month": [7, 22, 41, 42, 46, 56], "moolchand": 113, "moor": 113, "more": [2, 3, 4, 5, 7, 8, 9, 11, 15, 16, 17, 23, 24, 25, 27, 28, 30, 34, 38, 40, 42, 43, 44, 45, 47, 51, 58, 63, 68, 73, 76, 78, 79, 80, 84, 85, 86, 87, 88, 90, 91, 110, 119, 121, 122, 125, 126, 128, 130], "moreno": 113, "moreov": 55, "morimoto": 113, "morphapi": [0, 1, 4, 5, 24, 80, 84, 101, 103, 104], "morpholog": [0, 60, 94, 102, 103, 104, 113], "morphologi": [0, 80, 81, 102, 104, 113], "moskovitz": 113, "most": [0, 5, 9, 17, 23, 24, 45, 47, 49, 54, 56, 57, 59, 70, 73, 74, 78, 79, 85, 88, 89, 92, 107, 115, 116, 118], "mostli": [23, 42, 47, 119], "motion": 25, "motor": [103, 113], "mount": [39, 64], "mous": [0, 5, 11, 12, 34, 43, 46, 54, 65, 69, 70, 72, 83, 87, 91, 92, 102, 103, 113, 118, 126, 128, 131], "mouselightapi": 103, "move": [1, 5, 7, 11, 16, 17, 24, 25, 38, 39, 40, 45, 55, 68, 82, 86, 91, 128, 130, 131], "movement": 113, "mpin_celldb": 103, "mpin_zfish_1um": [45, 46, 47, 51, 83, 124, 132], "mpinmorphologyapi": 103, "mri": [2, 11, 43, 46, 47, 113], "mtr": [46, 47], "mu": [45, 103, 113], "much": [3, 11, 14, 16, 23, 42, 47, 62, 73, 98, 99, 100, 106, 119, 127], "multi": 113, "multi_processor_count": 91, "multicor": 91, "multilevel": 45, "multimod": [43, 113], "multipag": 67, "multipl": [5, 11, 16, 17, 27, 28, 43, 45, 46, 55, 56, 60, 63, 69, 73, 80, 86, 94, 105, 113, 115, 120, 127, 128, 129], "multiplex": 113, "multipli": 59, "multisensori": 113, "munich": 0, "murrai": 113, "murri": 113, "musal": 113, "musculu": [45, 103], "musi": [51, 112], "must": [6, 11, 23, 25, 28, 45, 47, 53, 54, 61, 62, 63, 72, 73, 78, 95, 97, 98, 105, 107, 113, 127, 129], "mutual": 76, "mu\u00f1oz": 113, "my": [63, 64, 72, 105], "my_arrai": 57, "my_data": 63, "mydata": [57, 84], "mypi": 33, "myteri": 86, "myung": 113, "m\u00fcller": 113, "n": [9, 23, 54, 62, 64, 72, 75, 76, 77, 80, 89, 101, 105, 113, 126, 128], "n_free_cpu": 92, "n_sds_above_mean_thresh": 92, "nadif": 113, "nagoshi": 113, "najva8": 128, "nakamura": 113, "name": [2, 4, 5, 8, 11, 12, 13, 14, 15, 16, 17, 24, 25, 28, 31, 37, 38, 39, 40, 42, 43, 44, 45, 46, 48, 49, 50, 51, 55, 56, 72, 82, 85, 86, 89, 91, 105, 116, 125, 126, 128, 130, 131], "name_of_packag": 33, "napari": [1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 22, 23, 24, 27, 28, 32, 34, 39, 40, 42, 43, 45, 48, 52, 54, 67, 69, 74, 77, 88, 92, 95, 97, 98, 99, 101, 107, 113, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131], "napari_atla": 45, "napari_atlas_represent": 45, "napariatlasrepresent": 45, "narasimhan": 113, "nassar": 112, "natal": 46, "nation": 113, "natur": [14, 69, 72, 113], "navarret": 113, "navig": [5, 42, 43, 100, 113, 118, 125, 126, 128, 130, 132], "ncomms11879": 69, "ndimag": 30, "ndisplai": 45, "ndtiff": 92, "nearli": 89, "neat": 55, "necess": 0, "necessari": [10, 14, 25, 27, 44, 45, 48, 53, 80, 85, 86, 131], "necessarili": [13, 45], "necessit": 17, "need": [3, 8, 11, 12, 16, 23, 25, 27, 28, 37, 38, 39, 40, 43, 44, 48, 49, 50, 51, 52, 55, 56, 59, 61, 63, 65, 68, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 106, 107, 110, 112, 117, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "neg": 76, "negwer": 113, "neill": 113, "neocortex": 103, "neonat": 113, "nep": 22, "nervou": [2, 11], "net": 113, "netplotbrain": 113, "network": [61, 63, 65, 87, 90, 94, 96, 100, 113, 116, 118, 119, 123], "network_depth": 92, "network_voxel_s": 92, "neubeck": 113, "neural": 113, "neuroanatom": [0, 7, 46, 52, 56, 65, 69, 86, 113], "neuroanatomi": [0, 3, 11, 56, 110, 113, 127, 129], "neurochemistri": 113, "neurodegener": 113, "neurodevelopment": 113, "neuroimag": 47, "neuroinformat": [25, 32, 112, 113], "neurologi": 113, "neurom": 102, "neuromatch": 114, "neuromorpho": 102, "neuromorphorg": 103, "neuromorporgapi": 103, "neuromus": 112, "neuron": [0, 34, 80, 81, 82, 102, 103, 104, 113, 127, 129], "neurons_df": 103, "neurons_id": 103, "neurons_metadata": 103, "neuropixel": [113, 114, 123, 127], "neuropsychopharmacologi": 113, "neurosci": [0, 14, 34, 39, 113, 114, 129], "neuroscientif": 17, "neuroscientist": [0, 110], "neurowir": 111, "new": [0, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 24, 27, 30, 33, 37, 38, 40, 42, 43, 44, 46, 47, 55, 59, 63, 64, 73, 74, 82, 83, 86, 95, 96, 97, 99, 101, 105, 111, 116, 122, 125, 126, 127, 128, 129, 130, 131, 132], "newer": [4, 10, 48, 79], "newest": 42, "newli": 45, "newmast": 113, "nexhipi": 113, "next": [5, 7, 11, 15, 25, 27, 41, 42, 45, 51, 82, 94, 95, 113, 122, 128, 130], "ng": 113, "ngaug": 113, "nguyen": 113, "nice": [24, 73], "nichola": 112, "nickdelgrosso": 112, "nicol": 112, "nicola": 112, "niedworok": [65, 69, 87, 112, 113], "nifti": [57, 84], "niftyreg": [68, 69, 70, 71, 72, 75], "nii": [57, 128], "niko": 112, "nikoletopoul": 113, "niksirbi": 112, "nissl": 46, "no_cel": [66, 92], "nocturn": [3, 11], "node": 45, "noisyski": 112, "nolan": 113, "non": [25, 27, 28, 43, 45, 90, 97, 99, 100, 113, 119, 122, 128], "none": [24, 51, 63, 92], "nor": [4, 11, 15], "norepinephrin": 113, "normal": [45, 47, 51, 76, 82, 91], "normalis": 30, "notabl": [16, 90], "note": [2, 7, 11, 14, 15, 23, 24, 25, 38, 47, 49, 69, 79, 83, 85, 101, 103, 128, 132], "notebook": 81, "noth": [39, 92], "notic": 76, "noun": 24, "nov": 113, "novafa": 112, "novel": 3, "novemb": [41, 42, 111], "now": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 25, 27, 28, 37, 38, 39, 40, 42, 49, 55, 63, 83, 112, 118, 127, 128, 129, 132], "noya": 113, "np": [55, 84], "npeschk": 112, "npy": [59, 66, 80, 84, 120, 125, 127, 130], "nuclear": [5, 63, 113], "nuclei": 113, "nucleu": [6, 59, 60, 115], "number": [0, 4, 5, 6, 10, 11, 15, 16, 17, 24, 25, 27, 28, 30, 33, 34, 42, 43, 45, 46, 47, 49, 51, 62, 65, 66, 72, 74, 75, 76, 82, 89, 90, 94, 98, 99, 102, 115, 116, 117, 119, 125, 129, 130, 131], "numer": [116, 119], "numpi": [22, 45, 55, 57, 80, 84, 92, 125], "numpydoc": 22, "nvidia": [88, 89, 91, 116, 117], "nx3": 80, "nyberg": 113, "o": [56, 62, 67, 99, 100, 113, 117], "obenhau": [52, 65, 69, 112, 113], "obj": [45, 46, 50, 84], "object": [13, 28, 46, 52, 55, 78, 80, 85, 86, 90, 92, 96, 113, 126, 129], "obliqu": 128, "oboh": 113, "observ": 113, "obstacl": 0, "obtain": [14, 28, 49], "obviou": [23, 119], "obvious": 82, "occasion": 80, "occur": [16, 39, 89], "occurr": 37, "ochrogast": [11, 47], "octob": [18, 114], "odor": 113, "off": [105, 125], "offer": [16, 26, 40, 70], "offici": 22, "offlin": 65, "often": [0, 23, 42, 53, 55, 61, 63, 91, 99], "ok": [90, 106], "okano": 113, "old": [1, 10, 15, 17, 27, 37, 38, 39, 40, 42, 45, 68], "older": [12, 46], "oldest": 39, "olfactori": [2, 107, 113], "olivi": 113, "olsen": 113, "omit": 56, "onc": [15, 16, 23, 24, 25, 26, 38, 45, 51, 55, 56, 69, 72, 73, 74, 80, 86, 95, 97, 98, 99, 100, 101, 103, 104, 117, 120, 122, 125, 126, 127, 128, 129], "oncologi": 113, "one": [0, 1, 11, 14, 15, 16, 17, 19, 22, 23, 24, 25, 27, 28, 36, 38, 40, 42, 45, 47, 50, 51, 53, 55, 56, 57, 59, 61, 63, 67, 76, 77, 82, 85, 86, 88, 89, 94, 95, 98, 100, 101, 104, 105, 107, 118, 119, 127, 128], "ones": [51, 73, 129], "onli": [10, 11, 12, 25, 27, 28, 29, 32, 38, 40, 42, 45, 47, 50, 55, 63, 69, 70, 72, 73, 76, 82, 86, 88, 93, 94, 95, 98, 99, 109, 112, 117, 127, 128, 129], "onlin": [45, 86, 103, 111, 114], "onto": [17, 40, 59, 67, 77, 97, 113, 117, 128, 131], "ontologi": [47, 113], "opatz": 113, "open": [0, 2, 5, 11, 12, 16, 25, 27, 32, 42, 44, 45, 46, 52, 53, 54, 55, 56, 59, 65, 67, 69, 77, 86, 91, 95, 97, 98, 105, 107, 110, 113, 114, 115, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "oper": [7, 11, 55, 84, 105, 106], "opioid": 113, "oppon": 113, "opportun": [4, 7, 11, 16], "oppos": [28, 40, 56], "opposit": 51, "opt": 25, "optim": [76, 113, 121], "optimis": [5, 6, 87, 94, 131], "option": [13, 15, 16, 23, 25, 27, 28, 37, 38, 39, 45, 47, 50, 52, 54, 56, 57, 60, 61, 66, 68, 69, 71, 75, 76, 83, 89, 93, 95, 99, 117, 125, 126, 129, 132], "optional_signal_channel_imag": 62, "orang": 86, "orchestr": 113, "order": [25, 27, 28, 30, 39, 55, 66, 84, 85, 107, 112, 116, 117, 125, 127, 129], "oregon": 113, "oren": 112, "orena1": 112, "org": [45, 46, 51, 52, 65, 69, 78, 87, 102, 113], "organ": [2, 8, 11, 24, 47, 84, 113], "organis": [16, 17, 23, 24, 27, 28, 43, 110], "organisation": 16, "orient": [45, 46, 50, 51, 54, 55, 62, 69, 71, 72, 73, 75, 82, 85, 108, 113, 117, 118, 131], "origin": [2, 16, 22, 26, 30, 37, 45, 47, 51, 55, 67, 69, 72, 74, 75, 76, 85, 90, 96, 99, 107, 112, 113, 118, 128], "ormsbi": 113, "orofaci": 113, "oromanu": 113, "orthogon": 51, "ortiz": 113, "oryshchuk": 113, "oscil": 113, "oscillatori": 113, "osl": 72, "ossietzki": 113, "osteen": 113, "osten": 69, "osten_mouse_100um": 47, "osten_mouse_10um": [46, 47], "osten_mouse_25um": [46, 47], "osten_mouse_50um": 47, "osterior": [118, 128], "osypenko": 113, "other": [0, 1, 2, 3, 4, 7, 8, 11, 12, 16, 17, 19, 22, 23, 24, 25, 26, 27, 28, 42, 45, 46, 52, 54, 55, 56, 63, 66, 69, 73, 75, 79, 81, 84, 87, 89, 92, 99, 105, 110, 113, 119, 125, 126, 128, 130, 132], "otherwis": [10, 37, 40, 64, 72, 73, 84, 88, 97, 101, 125], "otolaryngolog": 113, "otsu": 129, "our": [0, 2, 3, 4, 7, 8, 11, 12, 14, 15, 16, 17, 19, 23, 25, 26, 28, 31, 40, 42, 43, 44, 45, 56, 57, 101, 116, 118, 124, 125, 126, 127, 128, 129, 132], "ourselin": 69, "out": [4, 7, 11, 16, 23, 25, 27, 30, 39, 42, 43, 44, 45, 53, 54, 56, 62, 67, 72, 78, 82, 85, 105, 110, 116, 118, 119, 125, 131], "outlier": 60, "outlin": [17, 23, 26, 42, 65, 73, 75, 82, 87, 119], "output": [6, 28, 30, 38, 39, 45, 53, 54, 56, 59, 62, 65, 67, 69, 72, 73, 86, 91, 92, 98, 99, 113, 115, 117, 118, 119, 120, 122, 125, 126, 127, 128, 129, 130, 131], "output_directori": [62, 92, 98, 99], "output_fil": 56, "outputdirectori": [98, 99], "outsid": [24, 30, 49, 50, 53, 60, 62, 82, 119], "over": [16, 24, 25, 27, 30, 41, 45, 54, 56, 76, 86, 128, 132], "overarch": 101, "overlai": [2, 8, 131], "overlaid": [67, 87, 122, 131], "overlap": [30, 60], "overnight": [116, 127, 129], "overrid": 104, "overview": [36, 49, 78, 82], "overwrit": 28, "overwritten": [28, 56], "own": [0, 14, 20, 21, 24, 25, 34, 45, 52, 61, 75, 78, 81, 86, 87, 89, 94, 98, 100, 101, 121, 122, 128], "owner": 23, "oxel": 117, "p": [33, 69, 74, 113, 118, 128, 130], "p14": [46, 47], "p2": 89, "p28": [46, 47], "p4": [46, 47], "p56": 46, "p62": 129, "p80": 46, "pa": 51, "pace": 19, "packag": [0, 1, 2, 4, 6, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 33, 34, 37, 38, 40, 42, 45, 48, 49, 54, 58, 59, 67, 68, 70, 79, 84, 86, 101, 102, 105, 106, 113, 116, 118, 127], "pacureanu": 113, "pad": 55, "paddyroddi": 112, "paetzold": 113, "page": [13, 14, 15, 17, 23, 26, 40, 58, 66, 73, 88, 95, 101, 125, 126, 131], "paglia": 113, "pag\u00e8": 113, "paint": [126, 128], "paintbrush": 126, "pair": [11, 12, 92], "palaniappan": 113, "palchaudhuri": 113, "palegoldenrod": 120, "pan": [54, 113], "panda": [66, 80, 84, 125], "panel": [38, 53, 125, 126], "pang": 113, "panzanelli": 113, "paper": [9, 45, 46, 52, 56, 65, 69, 78, 87, 90, 96, 99], "pappu": 113, "paprica": 113, "parallel": [30, 113], "paramet": [5, 6, 23, 51, 61, 62, 69, 70, 71, 72, 75, 82, 86, 87, 90, 92, 101, 104, 116, 121, 128, 131], "parcel": 49, "park": 113, "pars": 28, "part": [2, 3, 6, 8, 11, 12, 15, 17, 23, 24, 25, 30, 37, 42, 45, 47, 48, 51, 57, 64, 73, 82, 104, 105, 107, 115, 117, 125, 127, 130], "parti": [53, 89, 90], "partial": 24, "particular": [5, 11, 16, 20, 21, 23, 28, 29, 42, 49, 57, 70, 79, 91, 101, 112], "particularli": [3, 11, 12, 23, 40, 71, 116], "parvalbumin": 113, "pass": [26, 27, 30, 32, 51, 56, 63, 64, 67, 71, 72, 76, 80, 82, 86], "passani": 113, "passlack": 113, "password": 106, "past": [42, 56, 82], "pasterkamp": 113, "patch": [25, 27, 33], "patel": 113, "patella": 113, "path": [32, 39, 40, 45, 49, 56, 57, 62, 63, 72, 84, 86, 92, 93, 98, 99, 100, 118, 127, 129], "pathlib": [86, 92], "pathwai": [113, 129], "pati": 113, "patient": 124, "patrick": 112, "pattarika": 112, "pattern": [24, 113], "paul": 112, "paula": 113, "paulbrodersen": 112, "pavani": 113, "pavlov": 113, "pavon": 113, "pav\u00f3n": 113, "paxino": 47, "pb": [127, 129], "pcbi": [65, 87, 113], "pdf": 86, "peak": [30, 112], "pearson": 9, "peen": 112, "pei": 113, "penalti": 76, "penetr": 127, "peng": 113, "peopl": [0, 45, 73], "pep8": 33, "per": [6, 27, 42, 43, 50, 66, 115, 118, 127, 128], "peren": [47, 113], "perens_lsfm_mous": 5, "perens_lsfm_mouse_20um": [46, 47], "perez": 11, "perf": 89, "perfect": [56, 118, 128, 131], "perfectli": 118, "perform": [1, 5, 7, 13, 16, 17, 24, 27, 29, 30, 38, 40, 66, 69, 70, 72, 73, 76, 86, 95, 99, 118, 119, 121, 127], "perfus": [127, 129], "perhap": 79, "periaqueduct": 113, "perineuron": 113, "period": [27, 129], "persist": [37, 64, 89], "person": [19, 45], "perspect": [14, 15, 27], "pertain": 28, "peschk": 112, "peter": 112, "petersen": 113, "petrucco": [46, 51, 52, 56, 65, 69, 78, 112, 113, 114], "petsko": 113, "pfa": [127, 129], "pfeffer": 113, "pfister": 113, "phase": 113, "phd": 3, "phdthesi": 113, "phenotyp": [8, 11], "philip": 112, "phillip": 113, "philsham": 112, "photon": [11, 12, 20, 21, 47, 63, 87, 92, 99, 100, 113, 127, 129], "physiologi": 113, "piasini": 113, "pick": [27, 40], "pictur": 86, "pid": 89, "piec": [55, 82], "pin": [10, 17], "pinch": [11, 16], "pinpoint": 113, "pinto": 113, "pip": [1, 4, 5, 6, 9, 10, 12, 16, 17, 23, 25, 29, 37, 38, 39, 40, 43, 46, 51, 52, 55, 56, 57, 59, 68, 70, 79, 88, 101, 102, 128, 129], "pipelin": [0, 7, 11, 14, 15, 17, 23, 29, 39, 40, 47, 62, 68, 69, 101, 113], "pipett": 127, "pisano": 47, "pixel": [46, 50, 60, 61, 118, 128], "pl": 128, "place": [4, 16, 23, 27, 30, 36], "placehold": 28, "plai": [116, 128], "plan": [11, 40, 41, 42, 51, 113, 129], "planck": [45, 46], "plane": [30, 55, 60, 62, 63, 73, 82, 85, 94, 95, 107, 117, 118, 125, 128], "planner": 51, "plastic": [113, 120], "platform": [24, 43, 89, 106, 113], "plattner": 112, "pleas": [2, 3, 5, 6, 8, 9, 11, 12, 14, 16, 17, 20, 21, 23, 32, 34, 38, 41, 44, 46, 47, 50, 51, 52, 54, 58, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 78, 85, 87, 88, 89, 90, 91, 97, 99, 101, 105, 112, 116, 118, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132], "plenti": 91, "plo": [65, 87, 90, 99, 113], "plot": [9, 42, 43, 51, 55], "plotter": [34, 83], "plt": [49, 83], "plu": 55, "plugin": [5, 6, 9, 11, 13, 15, 16, 17, 20, 21, 24, 28, 34, 40, 42, 43, 52, 54, 59, 67, 69, 77, 88, 92, 95, 97, 98, 99, 101, 107, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "png": 86, "po": 82, "pochinok": 113, "point": [8, 11, 16, 25, 27, 28, 29, 30, 44, 45, 51, 53, 55, 56, 62, 63, 72, 74, 76, 80, 82, 84, 85, 86, 92, 93, 95, 97, 99, 120, 122, 125, 127, 128, 130, 131], "points_summari": 130, "poirion": 113, "polarbean": 112, "polici": 22, "polter": 113, "pon": 8, "pooch": [24, 32], "pool": [45, 99], "poor": [0, 71], "poorli": [71, 73, 99], "pop": [83, 112], "popul": [8, 11, 86, 119], "popular": 84, "popup": 83, "popup_scen": 83, "port": 69, "porta": [20, 112], "portugu": [46, 52, 56, 65, 69, 78, 112, 113], "portugueslab": 112, "posit": [6, 11, 19, 55, 56, 62, 66, 69, 76, 80, 82, 86, 90, 119, 127, 130], "possess": [25, 101], "possibl": [2, 16, 17, 23, 25, 29, 32, 40, 42, 43, 44, 45, 53, 55, 56, 64, 65, 92, 103, 109, 112, 116, 128, 132], "possibli": 23, "post": [17, 26, 39, 46, 113, 116, 127, 129], "posterior": [45, 55, 128], "postingest": 113, "postsynaps": 113, "potenti": [24, 38, 40, 71, 105], "pouchelon": 113, "power": [0, 88, 116], "pprint": 49, "pr": [23, 25, 32], "practic": 99, "prairi": [11, 46], "prairie_vole_25um": [12, 46, 47], "prasad": 113, "pre": [5, 17, 32, 65, 72, 82, 85, 87, 90, 97, 100, 128], "precis": [3, 11, 113, 127], "preconfigur": 113, "predict": 113, "preempt": 25, "prefer": [25, 27, 44, 56, 86, 113], "prefix": [4, 11, 13, 24, 25, 28, 29, 56, 57], "preissl": 113, "preliminari": 28, "premotor": 113, "prep": [29, 92], "prep_model": 92, "prepar": [83, 113], "preparatori": 55, "preprint": [34, 45], "preprocess": [72, 128], "prerequisit": [52, 125, 126], "presenc": 113, "present": [11, 16, 27, 28, 32, 50, 64, 129], "preserv": 16, "press": [82, 83, 86, 111, 122, 128, 130, 132], "presuppli": 99, "presynapt": 113, "pretend": 25, "pretrain": [61, 98], "pretti": 23, "prevent": [16, 17, 27, 33, 39, 76], "previou": [9, 17, 25, 76, 89, 97], "previous": [1, 5, 6, 11, 13, 14, 15, 16, 25, 37, 40, 53, 68, 70, 101, 116, 130], "prevosto": 113, "primari": [3, 11, 27, 83, 103, 113, 117, 118, 129], "primarili": 56, "princeton": [46, 113], "princeton_mouse_20um": [46, 47], "princip": 86, "print": [49, 56, 62, 73, 82, 85, 86, 89, 91, 92, 103], "prior": [15, 65], "prioriti": [16, 24, 43], "prioritis": 56, "probabilist": 113, "probabl": [23, 89, 105], "probe": [34, 52, 113, 123, 125], "probe_track": 127, "problem": [0, 40, 46, 55, 69, 95], "proce": [97, 127, 129], "procedur": 113, "proceed": [39, 113], "process": [0, 1, 2, 6, 9, 11, 13, 23, 25, 30, 38, 39, 43, 45, 46, 51, 53, 60, 62, 69, 71, 72, 75, 84, 85, 89, 90, 92, 94, 98, 99, 113, 125, 129], "produc": [0, 28, 39, 47, 56, 59, 95, 113], "product": 0, "profil": 113, "program": [0, 24, 28, 34, 46, 56, 62, 72, 89, 105], "programm": 46, "programmat": [0, 46], "progress": [16, 24, 98, 99, 113, 124, 128], "project": [2, 3, 8, 12, 22, 23, 24, 32, 41, 44, 45, 47, 53, 54, 56, 74, 102, 103, 109, 113, 125, 126, 129], "promot": 113, "prompt": [59, 91, 105, 118, 122, 124, 130], "pronounc": 34, "propag": [16, 113], "properli": [91, 117, 122, 127, 129], "properti": [28, 113], "protect": 113, "protein": [0, 113], "proteom": 113, "proteostasi": 113, "protocol": [113, 127, 129], "provid": [0, 1, 10, 11, 13, 14, 15, 16, 17, 22, 24, 25, 27, 28, 29, 34, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 68, 69, 70, 78, 80, 82, 84, 85, 87, 88, 101, 102, 106, 113, 116, 124, 127, 128], "pr\u00e9vost": 113, "psilocybin": 113, "psl": [73, 107, 117, 118, 131], "psobolewskiphd": 112, "psr": 107, "public": [0, 2, 23, 26, 44, 45], "publicli": [0, 102], "publish": [3, 8, 11, 16, 23, 39, 45], "puchad": 113, "puchet": [3, 11, 47], "puell": 47, "pull": [26, 44, 45], "pure": 72, "purkinj": 113, "purpl": 120, "purpos": [16, 27, 31, 39, 57, 84], "purposefulli": 118, "push": [14, 23, 25, 33], "put": [60, 84, 86, 94, 117], "putignano": 113, "pvz": 51, "pwr": 89, "py": [30, 51, 64, 73, 117, 127], "pydata": 22, "pypi": [17, 23, 24, 25, 32, 39, 40, 46, 129], "pyplot": 49, "pyproject": [27, 33], "pyqt": 23, "pyramid": 103, "pyside2": 79, "pytest": 32, "python": [0, 7, 9, 11, 13, 14, 16, 20, 21, 22, 23, 24, 27, 28, 30, 34, 37, 38, 40, 42, 43, 45, 46, 52, 56, 68, 70, 79, 84, 87, 88, 89, 91, 92, 99, 101, 102, 105, 110, 113], "pytorch": [42, 90, 91], "pyvista": 34, "p\u00e9rez": 112, "q": 113, "qian": 113, "qiu": 113, "qt": 24, "qtpy": 24, "qualiti": [0, 71, 127, 129], "quantif": [0, 113], "quantifi": 129, "quantit": 113, "queri": [46, 103], "question": [23, 41, 45, 47, 101], "quick": [44, 45], "quicker": 99, "quickli": [28, 86, 98, 99, 119], "quit": [116, 117, 119], "quotat": [56, 64, 72], "r": [46, 52, 65, 69, 74, 78, 113], "raacampbel": 112, "rabi": 113, "radford": 113, "radiotherapi": 113, "radiu": 120, "rahmati": 113, "rai": 113, "rais": [32, 44, 45, 50, 75, 89], "ram": [62, 70, 91, 117], "ramirez": 113, "ramiro": 113, "ramroomh": 112, "ran": 113, "rancz": 113, "rand": 55, "random": [45, 55], "randomli": 113, "rang": [24, 51, 76, 82, 91, 113], "rapidli": 84, "rare": 79, "rashid": 113, "rat": [43, 46, 113], "rate": [98, 99], "rather": [1, 3, 7, 11, 13, 17, 23, 25, 37, 38, 40, 47, 56, 63, 71], "ratio": 47, "raw": [0, 6, 11, 43, 54, 59, 66, 72, 75, 85, 97, 99, 119, 122, 130, 131], "rcpeen": 112, "re": [2, 5, 8, 17, 23, 24, 25, 28, 42, 44, 45, 59, 70, 78, 82, 86, 91, 95, 97, 100, 101, 105, 116, 118, 122, 128], "reach": [23, 45, 86], "read": [27, 28, 30, 68, 78, 88, 101, 116], "read_hdf": 66, "read_json": 84, "read_with_dask": [5, 57, 92], "readabl": [28, 33, 50, 56], "readi": [0, 11, 15, 16, 40, 78, 118, 127, 129], "readm": [26, 45, 50], "readout": 127, "readthedoc": 123, "real": [42, 43, 76, 92, 118, 130], "realign": 59, "realist": 63, "realiti": 113, "realli": [28, 39], "reason": [0, 23, 24, 33, 45, 62, 64, 71, 86, 93, 100, 105], "receiv": [1, 4, 10, 11, 13, 14, 16, 25, 39], "recent": [0, 3, 7, 8, 11, 23, 34, 79, 91], "receptor": 113, "recip": 25, "recognis": 28, "recommend": [5, 9, 13, 14, 15, 16, 17, 22, 23, 27, 37, 38, 39, 40, 47, 53, 59, 65, 70, 79, 88, 91, 92, 93, 98, 99, 101, 105, 106, 116, 121, 122, 125, 126, 128], "reconstruct": [34, 47, 55, 102, 104, 113], "record": [75, 113, 127], "recoveri": 113, "recreat": 128, "recycl": [39, 40], "red": [2, 8, 51, 63], "reddi": 113, "redefin": 16, "redirect": 56, "redistribut": 89, "reduc": [0, 10, 14, 15, 24, 42, 43], "redund": 27, "refactor": [27, 43], "refer": [0, 2, 8, 15, 16, 17, 19, 24, 27, 28, 34, 39, 40, 45, 46, 49, 50, 56, 65, 69, 70, 74, 76, 78, 80, 85, 105, 113, 131, 132], "refin": [46, 90], "reflect": [42, 43, 45], "reformat": 45, "regard": 26, "regardless": [17, 24, 38], "regen": 11, "regener": [2, 11], "regest": 113, "regev": 113, "region": [6, 13, 42, 43, 45, 46, 47, 50, 52, 53, 54, 59, 62, 69, 73, 77, 78, 82, 86, 99, 103, 113, 119, 125, 126, 127, 128, 129, 130, 132], "region_0": 126, "regist": [0, 6, 7, 11, 19, 34, 42, 47, 52, 54, 59, 62, 63, 65, 69, 71, 72, 74, 76, 77, 78, 80, 81, 95, 103, 113, 116, 123, 125, 126, 127, 129, 130], "registered_atla": 75, "registered_atlas_original_orient": 75, "registered_hemispher": 75, "registr": [0, 2, 5, 11, 13, 15, 16, 24, 26, 34, 40, 42, 43, 45, 47, 54, 55, 62, 63, 65, 67, 68, 69, 70, 75, 77, 88, 113, 117, 118, 119, 123, 125, 126, 131], "regul": 113, "regularli": 41, "reinforc": 113, "reingrub": 112, "reiten": 113, "reject": [67, 92, 95], "rel": [5, 82, 106, 128], "relat": [3, 11, 24, 44, 55, 113], "relationship": [7, 129], "relax": 25, "releas": [11, 15, 16, 17, 22, 23, 24, 27, 32, 35, 39, 40, 42, 45, 65, 100, 105, 106, 116], "relev": [3, 11, 14, 23, 44, 45, 51], "reli": [3, 11, 16, 24, 25, 43, 71, 85, 90, 102, 106], "reliabl": [0, 128], "reload": [53, 125, 126], "reloc": [17, 40], "remain": [0, 14, 16, 23], "rembado": 113, "rememb": [27, 70], "remot": [49, 70], "remov": [1, 10, 16, 24, 27, 37, 38, 39, 43, 60, 62, 86, 128], "renam": [11, 14, 15, 16, 17, 37, 38, 40, 53, 116, 125, 126], "render": [0, 23, 27, 51, 78, 80, 81, 84, 86, 102, 120], "reopen": 42, "reorganis": [15, 16], "reorient": [54, 66, 69, 75, 128], "repeat": [28, 45, 64, 97, 99, 126, 128], "repetit": 28, "replac": [10, 15, 16, 27, 37, 40, 43, 45, 105], "repli": 37, "repo": [23, 24, 28, 41, 42, 45], "repo_root": 27, "report": [14, 28, 32, 44, 52, 56, 65, 69, 79, 95, 111, 113], "repositori": [10, 15, 19, 20, 23, 24, 25, 26, 27, 29, 32, 34, 43, 44, 45, 49, 78, 79, 84, 86, 103], "repres": [3, 11, 22, 45, 66, 80, 82, 113], "represent": 113, "reproduc": [0, 128], "repurpos": 27, "request": [26, 28, 45, 56], "requir": [0, 3, 12, 13, 20, 21, 23, 27, 28, 29, 30, 32, 37, 45, 49, 53, 55, 62, 65, 68, 69, 79, 85, 99, 113, 117, 125, 126, 129], "res_um": 45, "resampl": [55, 59, 76], "research": [0, 2, 3, 11, 23, 26, 47, 52, 65, 69, 78, 84, 87, 113], "reserv": [38, 40], "reset": [54, 94, 98], "resid": 28, "resnet": [61, 92, 98, 99, 100], "resnet50_tv": 92, "resolut": [0, 3, 25, 45, 46, 47, 49, 59, 63, 69, 70, 71, 72, 75, 76, 77, 107, 113, 117, 127, 128, 129, 130, 131], "resolv": [25, 101], "reson": [2, 11, 47], "resort": 7, "resourc": [24, 45, 62, 72], "respect": [28, 40, 41, 45, 50, 53, 82, 128], "respons": [5, 24, 113], "restivo": 113, "restnet50_tv": 93, "restrict": 76, "restructur": [11, 13, 14, 15], "result": [0, 2, 6, 8, 9, 14, 23, 27, 47, 51, 53, 62, 69, 70, 72, 73, 76, 77, 86, 97, 104, 116, 117, 121, 127, 128, 129, 131], "retain": [8, 11, 14, 27, 37, 40, 68], "retir": 13, "retract": 127, "retrain": [19, 63, 65, 87, 90, 96, 100, 119, 121, 123], "retri": 89, "retriev": 28, "retro": 113, "retrograd": [113, 129], "retrospleni": [6, 59, 113, 115, 119, 120], "return": [28, 53, 56, 104], "reus": [15, 99, 128], "reusabl": [45, 113], "reveal": 113, "review": [23, 101, 113], "revisit": 41, "rewritten": 3, "rgb_triplet": 45, "rheinisch": 113, "rhp": 51, "rich": [0, 86, 113], "rigg": 113, "right": [2, 13, 14, 16, 39, 49, 50, 51, 54, 55, 59, 72, 74, 85, 94, 95, 105, 121, 122, 124, 125, 126, 127, 128, 130, 131, 132], "right_cell_count": [6, 59, 115], "right_cells_per_mm3": [59, 115], "right_volume_mm3": [59, 115], "rippl": 113, "risk": [76, 128], "ritola": 113, "ritoux": 113, "rivalan": 113, "rna": 113, "roadmap": [7, 24, 35, 43], "roat": 112, "rob": 112, "robacha": 113, "robert": [8, 11, 53, 112], "roberto": 112, "robertodf": 112, "robertson": 113, "robkozol": 112, "robust": 42, "roddi": 112, "rodent": [46, 113], "rohr": 113, "roi": 43, "role": [13, 113], "roll": [4, 11, 30, 39], "rollik": 113, "romanski": 113, "rong": 113, "rongxin": 113, "roossien": 113, "root": [45, 49, 113], "root_id": 49, "ross": 113, "rost": 113, "rotat": [5, 42, 54, 86], "roughli": [96, 99, 100, 128], "round": 34, "rousseau": [52, 65, 69, 87, 112, 113], "rout": [101, 113], "routin": 88, "row": [74, 124, 132], "rp84630": 113, "rsp": 51, "rspagl": 120, "rspd": 120, "rspv": 120, "rtx": [61, 89, 91], "ruben": [56, 112], "rubin": 113, "rubinstein": 113, "ruff": [33, 113], "rule": [27, 28, 113], "ruler": 80, "run": [3, 4, 5, 6, 8, 9, 10, 11, 14, 16, 17, 19, 23, 24, 25, 26, 29, 30, 32, 33, 38, 39, 45, 48, 56, 59, 61, 64, 66, 68, 69, 70, 71, 72, 74, 76, 79, 83, 86, 88, 89, 90, 93, 97, 99, 101, 105, 106, 116, 118, 121, 122, 125, 126, 127, 129, 130, 131], "run_train": 92, "runnabl": 24, "russo": 113, "s1": 113, "s41598": [52, 65, 69, 113], "saarah": 112, "saarah815": 112, "sacha": [12, 112], "sacha091": 112, "sacrific": [24, 129], "safe": [5, 79, 89], "sagitt": [51, 82, 85, 118, 128], "sai": 25, "saima": [11, 112], "saimaabdus19": 112, "sainsburi": [0, 20, 21, 111, 112], "sal": [55, 107], "saldanha": 113, "saleem": 113, "sam": 112, "samclothi": 112, "same": [1, 7, 9, 10, 11, 16, 17, 22, 24, 25, 28, 30, 32, 38, 45, 47, 50, 53, 55, 59, 66, 72, 75, 80, 83, 85, 86, 92, 104, 105, 106, 107, 115, 116, 117, 118, 122, 125, 126, 130], "sampath": 113, "sampl": [13, 35, 43, 47, 54, 69, 70, 77, 98, 99, 113, 115, 121, 122, 123, 125, 127, 130, 131], "sample_spac": 125, "samuel": 112, "san": 113, "sanchez": 113, "sar": 107, "sara": [112, 129], "sarabdjitsingh": 113, "saramedero": 112, "satisfactori": 99, "save": [5, 6, 27, 42, 45, 50, 53, 59, 60, 61, 62, 66, 72, 73, 75, 76, 84, 86, 93, 94, 97, 98, 99, 101, 118, 121, 122, 125, 126, 127, 128, 129, 130], "save_ani": 57, "save_cel": 92, "save_progress": 92, "saved_training_data": 92, "saw": [27, 86], "sbalzarini": 113, "sc": [44, 45, 55, 66, 73], "scalar": 51, "scale": [30, 42, 59, 113, 132], "scanner": 63, "scene": [5, 14, 17, 51, 78, 81, 84, 85, 86, 120, 127], "schaefer": 113, "schlegel": 113, "schmid": 113, "schmitz": 113, "schneggenburg": 113, "schneider": 113, "schoenherr": 113, "scholar": 113, "scholler": [74, 112, 113], "schubert": 113, "schuler": 113, "schwarz": 113, "schweihoff": 113, "scienc": [111, 113], "scientif": [52, 65, 69, 84, 110, 113], "scientifica": 111, "scientist": 0, "scipi": 30, "scott": 113, "scratch": [91, 97, 98], "screen": [56, 74, 105, 125, 126], "screenshot": [5, 81, 82], "screenshot_transparent_background": 86, "screenshots_fold": 86, "script": [1, 5, 11, 13, 15, 26, 37, 38, 43, 88, 101], "scroll": [45, 54, 121, 124, 131, 132], "scrollwheel": 54, "sdiebolt": 112, "sean": 112, "seankmartin": 112, "search": [6, 113, 121, 124, 125, 126, 130, 131, 132], "searchbox": [121, 124, 125, 126, 130, 131, 132], "sebastian": [112, 113], "seblamm": 112, "sec": 89, "second": [22, 24, 28, 55, 61, 74, 75, 107, 127, 128, 131], "secondari": [24, 103, 117, 118], "secret": 32, "section": [5, 11, 12, 20, 21, 23, 25, 28, 34, 38, 42, 45, 47, 51, 54, 55, 56, 64, 73, 85, 87, 90, 94, 95, 96, 99, 105, 113, 116, 118, 119, 124, 129, 130, 131, 132], "see": [5, 6, 9, 11, 13, 14, 16, 17, 23, 24, 25, 27, 33, 38, 39, 42, 45, 47, 48, 51, 52, 53, 54, 56, 58, 59, 62, 63, 64, 66, 70, 72, 73, 80, 82, 86, 87, 88, 89, 90, 91, 92, 95, 97, 98, 99, 100, 105, 106, 107, 113, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 130, 131], "seek": 113, "seen": [2, 24], "segment": [1, 10, 11, 17, 19, 24, 40, 42, 43, 54, 65, 69, 75, 87, 101, 113, 119, 123, 127, 129], "select": [17, 25, 27, 53, 54, 59, 73, 94, 95, 97, 98, 102, 103, 106, 113, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132], "self": [19, 113], "semant": 33, "semi": 113, "send": [23, 66, 86], "sensit": 56, "sensori": 113, "sensorimotor": 113, "sentenc": 56, "separ": [11, 13, 15, 16, 24, 32, 37, 42, 43, 45, 64, 72, 81, 99, 105, 113, 128, 131], "sepidak": 112, "sepiedeh": [112, 118], "septa": [3, 11], "seq": 113, "sequenc": [13, 39, 55, 57, 113], "seri": [11, 14, 17, 53, 57, 63, 92, 113, 114, 124, 132], "serial": [11, 12, 20, 21, 47, 63, 87, 92, 99, 100, 127, 129], "serial2p": 100, "serv": [24, 124, 129, 132], "server": 91, "session": [64, 94, 98], "set": [0, 5, 7, 11, 17, 22, 25, 27, 28, 32, 33, 45, 49, 51, 55, 56, 61, 64, 69, 72, 74, 76, 80, 82, 83, 84, 85, 86, 88, 91, 94, 97, 101, 105, 107, 116, 117, 120, 121, 122, 126, 127, 128, 131], "set_titl": 55, "set_xlabel": 55, "set_ylabel": 55, "setup": [14, 16, 25, 40, 108], "setuptool": 33, "setuptools_scm": 33, "sever": [0, 4, 14, 17, 24, 25, 27, 30, 80, 82, 126], "sevier": 113, "sexual": 113, "sfmig": 112, "shader": 5, "shader_styl": 120, "shah": 113, "shahzeidi": 113, "shakarji": 113, "shamash": 112, "shang": 113, "shank": 127, "shao": 113, "shape": [42, 46, 50, 55, 85, 113], "sharcq": 113, "share": [86, 99, 105, 110, 113, 118], "sheet": [11, 12, 113], "shell": 64, "shelter": 113, "shevtsova": 113, "shift": [82, 128], "shinozaki": 113, "ship": [29, 38, 40], "shock": 113, "short": [82, 132], "shorten": [45, 55], "should": [1, 4, 5, 7, 10, 11, 13, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 37, 38, 39, 40, 43, 45, 49, 50, 51, 56, 60, 63, 64, 67, 70, 73, 77, 80, 82, 83, 84, 85, 86, 88, 94, 95, 98, 99, 100, 101, 105, 106, 117, 118, 119, 121, 128, 129, 132], "shouldn": [61, 105], "show": [4, 10, 22, 40, 51, 54, 55, 56, 73, 83, 84, 86, 105, 107, 118, 119, 125, 127, 128], "show_atlas": 49, "shown": 51, "shvareva": 113, "side": [49, 51, 54, 73, 85, 95, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "sidebar": [54, 95], "siegl": 113, "sigma": [60, 62, 76], "sign": 23, "signal": [24, 30, 62, 63, 67, 73, 92, 94, 95, 97, 113, 118, 119, 121, 122, 127, 129], "signal_arrai": [57, 92], "signal_channel_imag": 62, "signal_imag": 92, "signal_image_directori": 92, "signific": [0, 9, 16, 68], "significantli": 23, "silhouett": 82, "silicon": [79, 121, 123, 125, 126], "silva": 113, "silvestri": 113, "simaobolota": 112, "similar": [2, 3, 8, 12, 23, 31, 45, 47, 49, 75, 76, 113, 115], "similarli": [11, 12, 37, 39, 67, 74], "simpl": [0, 23, 45, 51, 53, 79, 80, 86, 124, 132], "simpleitk": [53, 129], "simpler": [53, 92, 99], "simplest": [28, 68, 82], "simpli": [12, 15, 27, 38, 39, 49, 55, 66, 77, 102, 105, 125, 131], "simplic": [24, 49, 131], "simplifi": [9, 16, 42, 43], "simultan": 29, "sim\u00e3o": 112, "sinc": [16, 25, 28, 127], "singl": [1, 4, 5, 8, 10, 11, 14, 16, 17, 25, 27, 34, 37, 39, 40, 43, 47, 51, 53, 59, 63, 67, 73, 74, 88, 95, 99, 113, 117, 125, 131], "siquier": 113, "sirmpilatz": 112, "sit": 113, "site": [52, 120, 126, 127], "situat": [44, 55], "siu": 113, "six": 42, "size": [9, 42, 43, 60, 61, 62, 71, 72, 73, 75, 76, 90, 91, 94, 95, 96, 98, 99, 103, 108, 118, 119, 121, 126, 128, 131], "sju_cavefish_2um": [8, 46, 47], "sj\u00f6str\u00f6m": 113, "skill": [0, 99], "skip": [30, 72, 76, 84, 105], "skull": [127, 129], "slagt": 113, "slice": [22, 30, 55, 82, 107, 113, 126], "slice2volum": 113, "slide": [19, 20, 21, 63], "slider": [45, 126, 128, 130, 131], "slightli": [5, 9, 15, 16, 28, 47, 83, 124, 132], "slope": 9, "slow": [83, 97], "small": [24, 30, 33, 42, 92, 97, 99, 105, 119, 121, 122, 130], "smaller": 76, "smallest": 76, "smart": 113, "smc": 129, "smi": 89, "smith": 113, "smooth": [46, 62, 76, 125], "smoothli": 45, "sniff": 113, "snr": 118, "snt": 113, "so": [2, 4, 7, 10, 11, 14, 16, 17, 23, 25, 27, 28, 37, 38, 39, 42, 45, 49, 52, 54, 56, 63, 68, 70, 73, 84, 85, 86, 89, 99, 100, 101, 105, 121, 122, 124, 125, 126, 128, 131, 132], "sobolewski": 112, "social": [11, 12], "sofia": 112, "softwar": [0, 3, 5, 8, 11, 12, 16, 23, 24, 27, 28, 35, 42, 44, 45, 46, 47, 52, 54, 56, 65, 69, 72, 75, 84, 85, 87, 90, 92, 97, 98, 99, 101, 105, 106, 110, 113, 118], "solid": [43, 91, 126], "soltesz": 113, "soltwedel": 113, "solvent": 47, "soma": [5, 60, 94, 103, 104], "soma_diamet": [30, 92], "soma_radiu": 104, "soma_spread_factor": 92, "somatosensori": [3, 11], "somatostatin": 113, "some": [5, 7, 16, 23, 27, 28, 31, 34, 39, 40, 42, 43, 45, 46, 47, 49, 51, 54, 56, 58, 59, 62, 64, 70, 71, 73, 75, 77, 78, 79, 80, 84, 85, 99, 101, 103, 104, 105, 106, 107, 118, 119, 121, 122, 130], "someon": [23, 24, 106], "someth": [2, 8, 73, 89, 91, 100, 105, 115, 117, 120], "sometim": [2, 11, 23, 32, 45, 47, 49, 55], "somewhat": [17, 106], "somewher": 16, "song": 113, "soon": [14, 23, 29, 63], "sophist": [0, 86], "sort": [33, 72, 85], "sound": 113, "sourc": [0, 10, 11, 16, 23, 25, 27, 32, 39, 46, 49, 50, 52, 55, 56, 65, 69, 85, 89, 110, 112, 113, 128], "source_origin": 55, "source_spac": 55, "space": [5, 6, 7, 11, 19, 22, 24, 39, 42, 45, 46, 49, 53, 54, 56, 59, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75, 76, 84, 94, 95, 98, 99, 101, 108, 113, 115, 117, 118, 120, 125, 126, 127, 129, 130], "spare": [62, 72], "spars": 42, "spatial": [34, 113, 126], "speak": 91, "speci": [0, 8, 11, 12, 24, 26, 45, 46, 47, 49, 72, 103, 113], "special": [82, 113], "specialist": 110, "specif": [3, 11, 23, 24, 26, 39, 42, 47, 54, 55, 56, 57, 58, 62, 81, 82, 84, 93, 103, 105, 110, 113, 129, 131], "specifi": [28, 37, 45, 51, 55, 61, 62, 67, 72, 82, 86, 93, 94, 98, 99, 101, 103, 107], "specimen": [34, 113], "spectacular": 86, "spectrum": 113, "sped": 5, "speed": [5, 9, 14, 17, 23, 30, 88, 90, 94, 98, 104, 113, 117, 124, 127, 131], "spent": 0, "sphere": 126, "spheric": 30, "sphinx": 22, "spier": 113, "spike": 113, "spin": 91, "spinal": [46, 113, 128], "spine": 113, "spline": [125, 127], "split": [11, 13, 60, 94, 96, 99, 100, 116], "spontan": 113, "spot": 118, "spragu": 46, "spread": [27, 60, 94], "squar": [30, 128, 132], "squash": 23, "ss": 51, "ssd": [91, 116], "sse4": 89, "staat": 113, "stabl": [13, 16, 17, 24, 27, 40, 106, 113], "stack": [22, 24, 45, 54, 55, 85, 107, 127, 129], "stage": [11, 15, 30, 33, 47, 90, 96], "stain": [5, 63, 73], "stand": [10, 15, 82], "standalon": [1, 10, 11, 37, 56, 57], "standard": [22, 23, 49, 51, 60, 65, 69, 75, 92, 94, 101, 127, 129], "standardis": [42, 47], "stansbi": 112, "stark": 113, "start": [7, 25, 39, 45, 47, 51, 55, 59, 62, 69, 70, 76, 91, 94, 97, 100, 105, 110, 116, 117, 125, 127, 128, 129, 130], "start_plan": 92, "state": [25, 91, 113], "statement": [15, 38, 40, 62], "static": [28, 33], "statist": [34, 115], "stddev": 30, "stdout": [28, 56], "stegiopast": 112, "steinmetz": 113, "stempel": 113, "step": [0, 2, 7, 8, 11, 12, 13, 14, 17, 24, 25, 26, 28, 30, 38, 39, 43, 55, 61, 69, 76, 78, 82, 84, 85, 90, 91, 96, 97, 99, 100, 117, 126, 128, 129, 130], "stephen": 112, "stephenlenzi": 112, "still": [13, 14, 15, 17, 23, 25, 28, 37, 39, 40, 42, 45, 83, 85, 89, 90, 91, 127, 128], "stolz": 113, "stop": 105, "storag": [45, 64, 91, 98, 99], "store": [11, 14, 15, 24, 28, 30, 31, 39, 49, 63, 67, 84, 98, 99, 117], "stp": [46, 47], "stpt": 46, "str": 51, "straight": 125, "straightforward": [7, 11], "strategi": 113, "stream": [16, 23, 113], "stream_executor": 89, "streamlin": [0, 28, 45, 80, 81, 82, 113], "street": 113, "striatal": 113, "striatum": 113, "string": [28, 45, 49, 51, 72, 107], "strom": [65, 87, 113], "strong": [63, 113], "strongli": [38, 39, 79, 128], "structur": [0, 11, 12, 19, 22, 23, 25, 27, 33, 37, 38, 40, 45, 46, 50, 53, 54, 66, 68, 84, 103, 113, 123], "structure_area_abbrev": 103, "structure_detect": 30, "structure_from_coord": 49, "structure_id": 45, "structure_id_path": [45, 49], "structure_nam": [6, 59, 115], "structure_templ": 45, "stub": 33, "stuck": [76, 91], "student": [3, 20, 21], "studi": [2, 3, 8, 11, 12, 26, 47, 113], "studio": 89, "stuff": 73, "stumpenhorst": 113, "style": 56, "st\u00f6ber": 113, "suarez": 11, "sub": [72, 128], "subclass": 28, "subcort": 113, "subdirectori": [50, 66, 99], "subfold": [24, 125], "submit": [23, 45, 113], "submodul": [1, 10, 11, 24, 25, 37, 38, 40, 45, 58, 87], "subnetwork": 113, "subsequ": [85, 104], "subspac": 113, "substitut": 0, "substrat": 113, "subtl": 28, "subvolum": [42, 43], "success": [25, 28, 29, 121, 125, 126], "successfulli": [39, 125, 131], "successor": [17, 40], "suckert": 113, "sudharshan": 113, "suffic": 28, "suffici": [47, 51, 55, 63, 129], "suggest": [41, 90, 99], "suit": [0, 11, 12, 17, 23, 27, 29, 40, 45, 56, 101, 116, 127, 129], "suitabl": 29, "sullivan": 113, "summari": [6, 66, 115, 125, 130], "summaris": [125, 126], "sun": 113, "sundar": 113, "super": 113, "superior": [55, 74, 85, 107, 128], "supervis": 113, "suppli": [38, 61, 63, 75, 92, 94, 98, 99, 118], "support": [0, 7, 9, 23, 42, 43, 45, 47, 51, 56, 57, 59, 63, 69, 70, 78, 79, 80, 81, 82, 83, 85, 86, 89, 92, 109], "suppos": 25, "supraspin": 113, "sure": [0, 3, 8, 23, 26, 27, 33, 38, 44, 59, 67, 70, 73, 83, 88, 91, 98, 99, 117, 125, 126, 127, 129], "surfac": [3, 8, 11, 45, 46, 118, 119, 125, 127], "surround": [16, 129], "survei": 113, "surviv": [3, 11], "suscept": 113, "sustain": 14, "su\u00e1rez": 112, "svahn": 113, "svara": 113, "svg": [27, 86], "swap": [55, 84], "swc": [5, 80, 84, 102], "switch": [4, 9, 37, 105, 113, 128], "symbol": [119, 125], "synaps": 113, "synapt": 113, "synchrotron": 113, "syntax": [28, 55, 62], "synthet": 98, "sysadmin": 91, "system": [2, 3, 7, 9, 11, 51, 64, 70, 84, 85, 91, 105, 106, 113, 129], "systemat": 113, "szabo": 113, "szelenyi": 113, "s\u00f8rensen": 113, "s\u00fcrmeli": 113, "t": [3, 6, 13, 14, 16, 23, 24, 25, 27, 29, 37, 39, 40, 42, 43, 44, 45, 46, 50, 51, 52, 53, 56, 60, 61, 62, 64, 65, 69, 70, 73, 76, 78, 83, 84, 85, 86, 87, 92, 94, 95, 98, 99, 101, 105, 113, 116, 118, 125, 126, 128], "t2": [46, 47], "ta": 113, "tabl": [26, 130], "tacto": 113, "tadpol": 128, "tafazoli": 113, "tag": [13, 25, 32, 33, 39, 44, 45], "tai": 113, "tail": 113, "takatoh": 113, "take": [4, 5, 6, 7, 11, 13, 14, 15, 16, 17, 23, 24, 27, 28, 29, 30, 44, 45, 51, 53, 65, 73, 77, 82, 84, 86, 91, 95, 96, 97, 98, 99, 100, 115, 116, 117, 118, 119, 121, 124, 125, 126, 128], "taken": [0, 24, 73, 117, 129], "tak\u00e1c": 113, "talk": [0, 113], "tamura": 113, "tan": 113, "tantirigama": 113, "tar": [26, 45, 100], "target": [2, 25, 55, 85, 99, 113, 128, 129], "target_origin": 55, "target_spac": 55, "task": [0, 30, 43, 47], "tatarnikov": [11, 21, 112], "taylor": 113, "tb": 92, "teach": 113, "team": [2, 3, 8, 12, 23, 26, 44, 112], "technic": [0, 43], "techniqu": [0, 12, 99], "technologi": 24, "tectum": [2, 83], "tegment": 113, "teichert": 113, "telecephalon": 45, "telencephal": 113, "telencephalon": [45, 132], "tell": [28, 56, 105], "temp": [45, 89], "templat": [43, 45, 47, 50, 69, 123], "tempor": 113, "tensorboard": [98, 99], "tensorflow": [23, 38, 42], "term": [10, 17, 39, 43, 76], "termin": [3, 8, 56, 64, 67, 89, 91, 105, 118, 122, 124], "tersteg": 113, "test": [4, 11, 22, 23, 24, 25, 31, 42, 89, 98, 99, 100, 116, 118], "test_and_deploi": [25, 32], "test_brain": [115, 117, 118, 119, 120], "test_fract": 92, "tex": 56, "text": [24, 27, 28, 56, 62, 63, 72, 82, 125, 126], "text_fmt": 28, "textcit": 28, "th": 51, "thalamo": 113, "thalamu": [6, 8, 59, 113, 115, 119], "than": [1, 2, 3, 5, 7, 11, 13, 15, 16, 17, 24, 25, 27, 30, 37, 38, 40, 43, 45, 47, 51, 56, 63, 71, 99, 100, 105, 117, 118, 128], "thank": [5, 74, 118], "the_path": 63, "thei": [0, 1, 13, 16, 17, 22, 23, 25, 26, 28, 29, 30, 40, 43, 45, 50, 51, 54, 63, 66, 71, 73, 75, 80, 84, 85, 86, 88, 89, 97, 98, 99, 101, 128, 132], "them": [5, 16, 24, 26, 27, 28, 33, 40, 44, 45, 46, 47, 48, 53, 56, 57, 59, 62, 63, 84, 86, 89, 97, 125, 132], "theme": 22, "themselv": [16, 24, 27, 28, 50], "theoret": 56, "theori": 98, "therefor": [24, 127, 129], "thi": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 107, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "thick": 51, "thielert": 113, "thin": 87, "thing": [17, 28, 53, 59, 71, 82, 106, 128], "think": [23, 26, 44, 89, 91], "third": [22, 53, 55, 61, 75, 89, 90, 107, 128], "thirouin": 113, "thompson": 113, "thorac": 113, "thorn": 113, "thoroughli": [127, 129], "those": [5, 12, 15, 25, 28, 29, 45, 46, 47, 55, 56, 106, 119, 132], "though": [23, 28, 49, 56, 86, 105], "thousand": 91, "three": [11, 13, 24, 25, 27, 30, 42, 49, 51, 59, 69, 73, 85, 86, 87, 96, 107, 110, 113, 119, 125, 128], "threshold": [60, 94, 129], "through": [1, 2, 4, 7, 10, 13, 16, 24, 25, 27, 37, 40, 43, 45, 49, 51, 53, 54, 55, 92, 97, 116, 123, 131, 132], "throughout": 6, "throughput": 0, "thu": [0, 25], "thumb": 27, "thurber": 113, "tiago": [56, 112], "tick": 94, "tierno": 113, "tif": [57, 84, 92, 128], "tiff": [45, 46, 50, 53, 57, 59, 63, 66, 67, 75, 84, 92, 95], "tifffil": 92, "tiffil": 84, "tile": 30, "tillmann": 113, "tilt": 128, "time": [5, 13, 14, 16, 23, 27, 29, 30, 33, 40, 45, 49, 71, 73, 76, 77, 82, 83, 93, 98, 99, 103, 105, 113, 116, 117, 118, 124, 125, 126, 127, 129], "tip": 127, "tissu": [34, 63, 71, 113, 127, 128, 129], "titan": [61, 89], "titl": [25, 28, 51, 56, 83, 86], "tmp__": 29, "to_nii": 57, "to_target_shap": 55, "to_tiff": 57, "todai": [11, 17], "todorov": 113, "togeth": [3, 8, 14, 15, 17, 24, 55, 87, 113, 117], "toggl": [54, 56, 77, 119, 128, 131, 132], "tomer": 113, "toml": [27, 33], "tomographi": [100, 127, 129], "toni": 113, "too": [25, 28, 84, 85], "tool": [0, 1, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 23, 25, 27, 29, 32, 34, 36, 38, 40, 41, 42, 43, 44, 45, 47, 50, 53, 57, 58, 59, 68, 69, 74, 83, 84, 85, 92, 93, 99, 107, 110, 113, 118, 122, 123, 127, 128, 129, 130], "toolbox": 113, "toolkit": 113, "top": [11, 16, 17, 27, 28, 40, 45, 73, 74, 94, 95, 101, 107, 121, 122, 124, 125, 126, 128, 130, 131, 132], "topmost": 128, "topograph": [3, 11], "torch": 91, "total": [73, 117], "total_cel": [59, 115], "total_memori": 91, "total_volume_mm3": [59, 115], "totaro": 113, "toubal": 113, "touch": [2, 3, 8, 12, 23, 41, 90, 91, 105, 112, 118, 127], "tour": 19, "toward": [0, 82, 85, 128], "tozzi": 113, "trace": [0, 27, 53, 113, 123, 125], "tracer": 113, "track": [53, 54, 55, 61, 113, 123, 126], "track_0": 125, "track_0_fit": 125, "track_nam": 125, "tractographi": 80, "train": [5, 9, 18, 61, 63, 65, 87, 90, 94, 95, 118, 119, 122], "train_yml": 92, "trained_model": 92, "trained_network": 122, "training_output": 100, "training_yml": 92, "trajectori": [34, 53, 113], "tran": 113, "transact": [113, 129], "transcriptom": 113, "transfer": [44, 47], "transform": [6, 11, 55, 58, 62, 65, 66, 67, 69, 73, 75, 84, 85, 113, 128, 130], "transformation_matrix": 55, "transformation_matrix_to": 55, "transgen": 45, "transit": 40, "transmiss": 113, "transmit": 113, "transpar": 86, "transport": [113, 129], "traumat": 113, "treat": 62, "tree": [16, 25, 49, 113, 132], "treelib": 49, "treiber": 113, "tremblai": 113, "trend": 113, "tri": [25, 45], "triesch": 113, "trivial": [25, 85], "troi": [56, 112], "troidl": 113, "troubl": [73, 90, 105], "troubleshoot": [44, 66, 69, 91, 94], "troymargri": 112, "true": [49, 55, 72, 83, 91, 92], "try": [23, 32, 39, 45, 47, 71, 74, 89, 105, 116, 120, 130], "tsai": 113, "tsitoura": [52, 65, 69, 87, 112, 113], "tsoi": 113, "tsoulfa": 113, "tunnel": [3, 11], "tupl": 51, "turn": 51, "tutori": [2, 3, 6, 8, 12, 59, 110, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "tweak": [51, 70], "twice": [30, 56, 73], "twine_api_kei": 32, "twitter": 26, "two": [3, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 28, 30, 37, 39, 40, 45, 47, 51, 54, 59, 63, 64, 66, 70, 72, 74, 83, 84, 85, 86, 87, 89, 90, 92, 95, 96, 97, 99, 100, 104, 105, 118, 121, 122, 127, 128, 130, 131], "txt": [50, 56], "type": [0, 28, 30, 33, 45, 49, 54, 56, 63, 67, 70, 73, 78, 81, 89, 92, 99, 102, 105, 113, 119], "typic": [25, 27, 29, 31, 50, 54, 63, 73, 99], "tyson": [11, 20, 21, 23, 46, 52, 56, 65, 69, 78, 87, 112, 113, 114], "u": [7, 8, 11, 12, 14, 16, 17, 25, 27, 28, 34, 41, 44, 52, 69, 78, 79, 113], "uchida": 113, "uchishiba": 113, "ucl": [113, 114], "ui": 25, "uint64": 30, "uint8": 30, "ulimit": 64, "um": [60, 61, 94], "unabl": 25, "unam": 46, "unam_axolotl_40um": [2, 46, 47], "unavail": 25, "uncorr": 89, "uncoupl": 113, "und": 113, "under": [7, 10, 11, 23, 27, 28, 37, 38, 40, 51, 57, 71, 116], "undergo": [16, 27], "undergon": [27, 37, 38, 68], "underli": [2, 11, 49, 113], "underpin": 28, "understand": [8, 11, 43, 45, 66, 71, 89, 90, 96, 113, 129], "undertak": 84, "underwai": [11, 13, 16], "undesir": 10, "unfold": 113, "unfortun": [39, 106], "unifi": [0, 46, 113], "uninstal": [1, 4, 10, 13, 15, 37, 38, 39, 59, 70, 121, 124, 125, 126, 130, 131, 132], "uniqu": [28, 46, 47, 50, 73], "unique_repositories_from_tool": 28, "unirep": 113, "unit": [25, 32, 85, 112], "uniti": 34, "univers": [0, 20, 21, 113], "universit\u00e4t": 113, "universit\u00e4tsbibliothek": 113, "unknown": 46, "unless": [23, 24, 45, 62, 89], "unlik": [47, 105], "unmaintain": 39, "unnecessari": [11, 16], "unravel": 129, "unrecognis": 64, "unrel": 17, "unsupport": 80, "unsur": 23, "unteth": 113, "until": [25, 97, 99], "unus": [56, 62, 72], "unusu": [2, 11], "unzip": 118, "up": [5, 14, 15, 16, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 39, 40, 45, 49, 59, 60, 69, 70, 82, 83, 85, 86, 88, 89, 90, 94, 98, 101, 103, 104, 105, 116, 117, 121, 122, 129], "updat": [1, 4, 7, 10, 11, 12, 13, 14, 15, 17, 25, 26, 27, 36, 37, 42, 43, 48, 56, 68, 69, 89, 93, 122], "uperior": [118, 128], "upgrad": [1, 4, 5, 6, 9, 10, 27, 38, 68, 101, 116], "upload": [1, 25, 26, 27], "upon": [34, 106], "upper": [22, 55, 107], "upright": 45, "upward": 128, "url": [28, 56], "us": [0, 1, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 19, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 37, 39, 40, 42, 44, 45, 46, 47, 48, 52, 53, 54, 55, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 79, 80, 81, 82, 85, 86, 88, 89, 90, 93, 94, 95, 96, 98, 99, 101, 103, 104, 106, 107, 108, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132], "usabl": [24, 37], "usag": [0, 30, 52, 69, 78, 89, 130], "use_cach": 104, "user": [0, 2, 4, 6, 7, 10, 11, 12, 13, 14, 15, 16, 23, 25, 27, 28, 29, 31, 32, 34, 39, 40, 43, 44, 45, 46, 48, 56, 70, 74, 80, 116, 123, 127, 128], "usual": [5, 23, 24, 25, 26, 28, 41, 47, 71, 83, 89, 90, 92, 99, 107], "util": [1, 6, 11, 24, 27, 31, 42, 56, 59, 89, 92, 101, 130], "utilis": [17, 29, 68], "utput": 117, "v": [3, 11, 25, 52, 62, 65, 69, 72, 87, 113, 117], "v0": 51, "v1": [13, 25, 27, 33, 37, 65, 113], "v22885": 127, "vaa": 113, "vale": 113, "valeria": 113, "valid": [26, 28, 55, 56, 69, 98, 99, 103], "valu": [25, 28, 46, 50, 51, 55, 71, 73, 76, 94, 98, 103, 113], "valuabl": [11, 12], "van": 113, "varga": 113, "vari": [0, 26, 38, 47, 63, 73, 106, 129], "variabl": [28, 42], "varieti": [24, 47], "variou": [2, 12, 20, 21, 27, 28, 45, 53, 57, 58, 77, 104, 117, 121, 129, 130], "vasculatur": 118, "vast": [0, 80, 103], "vasylieva": 112, "vazquez": 113, "ve": [15, 24, 42, 64, 74, 85, 86, 97, 104, 120, 125, 132], "vector": [51, 82], "vedo": [7, 11, 49, 51, 80, 83, 84, 102, 104], "velasquez": 113, "velezmat": 112, "veloc": [29, 113], "ventral": [6, 45, 59, 113, 115], "venv": 101, "verbos": [62, 72], "vergara": [112, 113], "verhagen": 113, "veri": [4, 6, 11, 23, 42, 45, 47, 49, 71, 87, 91, 105, 117, 121, 122, 131, 132], "verifi": 39, "versa": 84, "version": [1, 3, 4, 7, 10, 11, 12, 15, 22, 23, 24, 25, 32, 34, 42, 45, 46, 48, 49, 50, 65, 72, 76, 79, 88, 89, 101, 105, 106, 116, 118, 124, 128, 130], "vertebr": 47, "vertic": [94, 95], "vessel": [119, 127, 129], "vestibular": 59, "vglut": 113, "vi": [45, 51], "via": [5, 23, 24, 26, 28, 37, 39, 40, 42, 43, 45, 56, 113, 123, 128, 129], "vice": 84, "vid": 112, "video": [0, 34, 78, 79, 81, 82], "videomak": 86, "view": [2, 3, 8, 11, 12, 23, 32, 34, 38, 40, 48, 51, 54, 55, 67, 74, 77, 82, 86, 98, 99, 115, 119, 128], "viewer": [45, 86, 113, 125, 132], "viewup": 82, "vigji": 112, "viglion": 113, "viktor": 112, "viktorpm": 112, "viral": [0, 63], "virtual": [39, 40, 45, 101, 105, 113], "viru": 113, "visc": 49, "visc6a": 49, "visibl": [54, 68, 77, 128, 131], "vision": [14, 17, 113], "visit": 68, "visp": [83, 103], "visser": 112, "visual": [34, 45, 78, 81, 82, 83, 84, 86, 89, 102, 103, 104, 113, 123], "visualis": [2, 3, 7, 8, 11, 12, 15, 19, 20, 21, 24, 26, 38, 39, 42, 43, 45, 47, 52, 54, 59, 65, 66, 69, 73, 83, 87, 110, 113, 115, 116, 117, 123, 124, 125, 127, 130], "vita": 59, "vmax": 51, "vmin": 51, "vogelstein": 113, "vohra": 113, "vol": [84, 129], "volatil": 89, "vole": [11, 46], "volum": [30, 34, 45, 54, 55, 56, 65, 66, 72, 75, 80, 87, 113, 115, 126], "volumetr": [80, 84], "von": 113, "voxel": [30, 45, 49, 62, 71, 72, 73, 75, 76, 84, 85, 94, 95, 108, 118, 121, 128, 129, 130, 131], "voxel_s": 92, "vram": 91, "vtk": 83, "vu": 113, "vx": [25, 27], "v\u00e9lez": [52, 65, 69, 112, 113, 127], "w": [3, 8, 46, 52, 56, 65, 69, 78, 87, 113], "wa": [0, 1, 5, 10, 11, 12, 13, 15, 17, 27, 28, 38, 42, 45, 51, 61, 63, 65, 66, 68, 86, 89, 99, 100, 106, 107, 112, 113, 116, 118, 127, 129], "wagner": 113, "wai": [1, 6, 7, 10, 11, 22, 25, 34, 39, 40, 42, 45, 46, 53, 55, 59, 67, 70, 71, 83, 85, 86, 92, 99, 105, 117], "wait": [13, 14, 89, 98, 99], "walker": 113, "wall": 105, "wang": 113, "want": [7, 13, 14, 16, 25, 26, 27, 28, 37, 38, 39, 40, 45, 47, 49, 52, 54, 55, 56, 62, 64, 68, 70, 73, 77, 79, 83, 84, 86, 88, 92, 93, 97, 98, 100, 101, 105, 116, 117, 118, 122, 125, 126, 127, 129], "warn": [38, 56, 86, 89], "warp": [54, 66, 73, 75, 77, 113], "wash": [127, 129], "wasp": 34, "watch": 122, "watt": 113, "waxholm": [43, 46], "we": [0, 4, 5, 6, 7, 9, 11, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 53, 55, 56, 59, 63, 65, 66, 70, 79, 80, 83, 86, 88, 90, 91, 92, 99, 100, 101, 103, 105, 106, 107, 110, 113, 116, 117, 118, 121, 124, 127, 128, 129, 130, 131], "weakli": 113, "wealth": 0, "web": [86, 113, 129], "weber": 113, "webpag": 56, "websit": [22, 23, 25, 26, 27, 34, 45, 86, 89], "wee": 113, "week": [23, 46], "weekli": [23, 24], "weight": [47, 61, 76, 98, 99], "weiler": 113, "weinholtz": 113, "welcom": [7, 23, 41, 44, 51], "well": [11, 12, 16, 23, 24, 27, 28, 29, 40, 45, 61, 71, 73, 82, 90, 91, 95, 119], "wellcom": [0, 20, 21, 111, 112], "wen": 113, "went": [5, 45], "were": [1, 5, 7, 9, 11, 13, 14, 15, 34, 37, 38, 45, 63, 85, 131], "west": 113, "what": [2, 8, 24, 27, 42, 43, 44, 49, 63, 64, 68, 70, 84, 85, 86, 89, 90, 92, 98, 99, 105, 110, 118, 119, 125, 126], "whatev": [67, 105], "when": [0, 5, 9, 11, 13, 15, 16, 17, 22, 25, 27, 28, 30, 37, 38, 39, 40, 45, 48, 51, 54, 55, 56, 59, 66, 70, 73, 75, 78, 82, 83, 84, 86, 93, 98, 101, 104, 106, 107, 117, 119, 121, 122, 127, 128, 130], "whenev": [25, 45, 105], "where": [0, 16, 17, 23, 24, 25, 26, 27, 30, 32, 33, 41, 45, 51, 53, 56, 60, 73, 85, 86, 92, 93, 94, 116, 118, 125, 126, 127, 129], "whether": [23, 38, 56, 60], "which": [0, 2, 3, 4, 5, 6, 9, 10, 11, 13, 14, 15, 16, 17, 22, 24, 25, 27, 28, 29, 30, 31, 33, 38, 39, 40, 43, 44, 45, 47, 48, 50, 51, 53, 56, 57, 62, 68, 69, 72, 75, 76, 78, 82, 84, 86, 93, 97, 99, 100, 104, 106, 115, 118, 120, 124, 127, 128, 129, 131, 132], "whichev": 70, "while": [8, 11, 44, 45, 53, 77, 80, 86, 90, 95, 97, 98, 100, 121], "whilst": [10, 11, 16, 17, 25, 27, 39, 68], "whishaw": 113, "whisk": 113, "whisker": [3, 11], "white": 45, "whitlock": 113, "who": [4, 5, 10, 16, 23, 45, 106], "whoever": 91, "whole": [3, 5, 6, 11, 15, 16, 18, 20, 21, 34, 41, 42, 51, 52, 63, 65, 68, 69, 72, 73, 87, 99, 113, 123, 130], "wholebrain": 113, "whose": [37, 68], "whs_sd_rat_39um": [46, 47], "why": [23, 26, 105, 113], "wide": [28, 64, 73, 113, 114], "widen": 113, "widget": [11, 24, 37, 38, 54, 58, 73, 95, 121, 122, 124, 125, 126, 128, 130, 131, 132], "width": [22, 55, 61, 94, 107], "wiestler": 113, "wild": 113, "wilhelm": 113, "wiliam": 56, "willgraham01": 112, "william": 113, "williford": 113, "willmor": 113, "wilson": 113, "window": [54, 59, 67, 73, 77, 79, 81, 82, 89, 95, 100, 105, 106, 118, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "winter": 113, "wisdom": 113, "wish": [33, 37, 38, 39, 40, 50, 73, 82, 101, 125], "within": [2, 3, 5, 6, 8, 11, 12, 13, 24, 38, 42, 43, 52, 53, 54, 65, 66, 69, 70, 78, 113, 116, 129, 130], "without": [5, 7, 16, 17, 34, 37, 42, 43, 49, 56, 73, 75, 94, 95, 105], "witt": 113, "witten": 113, "won": [16, 37, 43, 51, 62, 83, 89, 105], "wonder": 74, "wong": 113, "woo": 112, "work": [0, 3, 7, 8, 9, 11, 13, 14, 24, 28, 30, 38, 39, 40, 42, 45, 46, 47, 50, 51, 55, 56, 61, 62, 63, 64, 68, 73, 80, 81, 83, 84, 89, 91, 96, 105, 107, 112, 116, 117, 118, 119, 121, 124, 128], "workflow": [0, 6, 11, 13, 15, 16, 17, 24, 28, 31, 32, 40, 42, 43, 59, 65, 67, 78, 87, 88, 101, 113, 116, 118], "workshop": 113, "world": [114, 118], "worri": [16, 17, 27, 45, 85], "wors": [5, 99], "would": [1, 2, 5, 12, 13, 14, 17, 23, 25, 27, 44, 65, 72, 80, 84, 86, 88, 93, 99, 107, 126, 128], "wrap": 34, "wrapper": [28, 87], "wrapup_atlas_from_data": 45, "wright": 113, "write": [24, 25, 26, 28, 45, 56, 101], "written": [17, 22, 45, 63, 70], "wrong": [74, 105], "wu": 113, "wutk": 113, "x": [10, 15, 25, 26, 27, 30, 38, 40, 46, 47, 51, 60, 61, 73, 76, 82, 84, 92, 94, 95, 105, 106, 113, 121, 122, 127, 131], "x2": 116, "x_scaling_factor": 57, "xiaomeng": 113, "xie": 113, "xin": 113, "xinxin": 113, "xiong": 113, "xlabel": 51, "xml": [59, 60, 66, 92, 95, 97, 99, 121, 122, 130], "xu": 113, "xue": 113, "xy": [60, 94], "y": [25, 27, 30, 51, 60, 61, 69, 73, 76, 84, 92, 94, 95, 99, 100, 113, 121, 127, 131], "y_scaling_factor": 57, "yale": 113, "yaml": [25, 28, 33, 98, 99, 122], "yaml_1": 99, "yaml_2": 99, "yaml_fil": 92, "yaml_str_to_dict": 28, "yan": 113, "yang": 113, "yao": 113, "yate": 113, "ye": [113, 124], "year": [28, 41, 42, 43, 56, 106], "yellow": [67, 119, 121], "yet": [42, 43, 44, 45, 58, 66, 83, 92, 121, 125, 126], "ylabel": 51, "yml": [32, 92, 99, 100, 122], "yoda": 112, "you": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 25, 27, 28, 29, 31, 33, 34, 37, 38, 39, 40, 41, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 115, 116, 117, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "young": [47, 112, 113], "your": [1, 3, 4, 5, 7, 8, 10, 11, 13, 14, 15, 17, 19, 23, 25, 28, 33, 37, 38, 39, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 56, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 82, 85, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 100, 101, 104, 107, 108, 115, 116, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "yourself": [23, 40, 101], "z": [25, 27, 51, 60, 61, 62, 73, 76, 84, 92, 94, 95, 107, 113, 121, 127, 131], "z_scaling_factor": 57, "zahler": 113, "zalta": 113, "zdora": 113, "zebra": 51, "zebrafish": [45, 46, 83, 102, 113, 124, 132], "zeller": 113, "zenodo": 51, "zerbi": 113, "zero": [45, 127], "zhang": 113, "zhao": 113, "zheng": 113, "zhou": 113, "zhu": 113, "zhukovskaya": 113, "ziminski": 112, "zimmerman": 113, "zingg": 113, "zip": 55, "ziyang": 112, "zizhen": 113, "zoom": [54, 82, 86, 119, 131], "zsh": 23, "zulip": [16, 23, 26, 41, 44], "zyx": 22, "\u00e7etin": 113, "\u00e9": 113, "\u00f6": 113, "\u00f6nc\u00fcl": 113, "\u00f6zt\u00fcrk": 113, "\u00f8vsthu": 113, "\u00fcnai": 113, "\u0161tih": 113, "\u03bcm": 51}, "titles": ["About", "bg-atlasapi and bg-atlasgen have merged under a new name", "An Atlas for the regenerative Ambystoma mexicanum (axolotl) has been added to BrainGlobe", "A mouse brain atlas with barrel field annotations has been added to BrainGlobe", "bg-space has been renamed", "BrainGlobe version 1.1.0 is released!", "New brainmapper napari widget released", "Plans for brainrender", "An atlas for the Blind Mexican Cavefish has been added to BrainGlobe", "Cellfinder version 1.3.0 is released!", "imio will be merging into brainglobe-utils", "Blog", "An atlas for the prairie vole Microtus ochrogaster has been added to BrainGlobe", "Version 1 of brainreg and brainglobe-segmentation released", "cellfinder has moved: version 1 of brainglobe-workflows released", "cellfinder-core and cellfinder-napari have merged", "BrainGlobe is being restructured, version 1 is on it\u2019s way!", "BrainGlobe version 1 is here!", "Courses", "Whole brain microscopy analysis with BrainGlobe and napari", "December 6th 2023", "October 7th-8th 2024", "Conventions", "Developer\u2019s guide", "Introduction to the BrainGlobe codebase for developers", "Publishing new releases", "brainglobe-atlasapi", "brainglobe-meta", "brainglobe-utils", "brainglobe-workflows", "cellfinder.core", "Specific Repository Developer Documentation", "Testing", "Tooling", "Software built by the community", "Community", "Releases", "Version 1: changes to registration and segmentation tools", "Version 1: changes to the cellfinder backend and plugin", "Version 1: Cellfinder migration and brainglobe-workflows", "BrainGlobe version 1 overview", "Roadmaps", "May 2024", "November 2023", "Contact", "Adding a new atlas", "BrainGlobe Atlas API (brainglobe-atlasapi)", "Atlas details", "Command line interface", "Python API", "Using the files directly", "brainglobe-heatmap", "brainglobe-segmentation", "Analysing segmentation from other napari plugins", "Prerequisites", "brainglobe-space", "Generating Citations for BrainGlobe tools", "Image IO submodule", "brainglobe-utils", "brainmapper cell transformation widget", "Cell candidate detection", "Cell candidate classification", "Command line interface", "Data requirements", "Debugging common error messages", "brainmapper command line tool", "Output files", "Visualisation", "brainglobe-workflows", "brainreg", "Requirements", "Troubleshooting", "Command line tool", "Napari plugin", "Checking orientation", "Output files", "Registration parameters", "Visualising brainreg output", "brainrender", "Installing brainrender", "Actors", "Usage", "Scene", "Using Notebooks", "Using your own data in brainrender", "Registering data", "Videos, animations and exporting to html", "cellfinder", "Installation", "Debugging common error messages", "Troubleshooting", "Speeding up cellfinder", "cellfinder.core API", "Downloading the pre-trained model in advance", "All cell detection parameters", "Cell detection", "cellfinder napari plugin", "Generating data to retrain the cellfinder classification network", "Retraining the network for new data", "Retraining the pre-trained network", "Using supplied training data", "Documentation", "morphapi", "Downloading data", "Rendering data", "Using conda", "Setting up your GPU", "Image space definition", "Setting up", "Funders", "BrainGlobe", "Media", "People", "BrainGlobe publications", "Talks", "Exploring the numerical results", "Whole brain cell detection and registration with the brainmapper command line tool", "Running brainmapper", "Setting up", "Visualising the results", "Visualising your data in brainrender", "Detecting cells in 3D with cellfinder", "Retraining the cellfinder classification network", "Tutorials", "Download an atlas through napari", "Segmenting a 1D track", "Segmenting 2/3D structures", "Silicon probe tracking", "Aligning samples for template building", "Analyze and visualize bulk fluorescence tracing data", "Analysing brainwide distribution of cells", "Registering a whole-brain image to an atlas", "Visualise an atlas in napari"], "titleterms": {"": [16, 23, 47, 85], "0": [5, 9, 68], "1": [5, 9, 13, 14, 16, 17, 36, 37, 38, 39, 40], "1d": 125, "2": 126, "2020": 111, "2023": [20, 43], "2024": [21, 42, 43], "2025": 42, "24": 64, "2d": 30, "3": 9, "3d": [30, 47, 111, 121, 126], "6th": 20, "7th": 21, "8th": 21, "A": [3, 47, 74], "On": 25, "The": [55, 89, 111], "These": 111, "To": [23, 54, 92], "_fmt": 28, "about": [0, 74], "access": 0, "activ": 105, "actor": [80, 82], "ad": [2, 3, 8, 12, 26, 28, 45, 80, 82], "addit": [31, 62, 72, 73], "adult": 47, "advanc": [79, 93], "affin": 76, "aid": 111, "al": 47, "algorithm": [89, 90], "align": [34, 85, 114, 128], "all": [59, 94], "allen": [47, 103], "ambystoma": 2, "amphibian": 47, "an": [2, 8, 12, 45, 111, 124, 127, 129, 131, 132], "analys": [53, 130], "analysi": [19, 20, 21, 66], "analyz": [0, 129], "anatom": 49, "anatomi": 114, "anim": 86, "annot": [3, 49, 97], "anyth": 90, "api": [46, 49, 92], "appendix": 16, "applic": 123, "april": 111, "ar": [2, 3, 8, 12, 45, 111], "architectur": 24, "aren": 89, "argument": [62, 64, 72, 99], "arrai": 22, "atla": [2, 3, 8, 12, 23, 26, 45, 46, 47, 49, 70, 72, 85, 124, 127, 129, 131, 132], "atlas": [2, 3, 8, 12, 34, 45, 46, 47, 51], "atlasapi": [1, 5, 26, 46], "atlasgen": 1, "autom": 33, "avail": [46, 47], "awar": 47, "award": 111, "axi": 22, "axolotl": [2, 47], "axon": 129, "azba": 47, "backend": [9, 38, 72], "barrel": [3, 47], "basic": [62, 72, 79], "been": [2, 3, 4, 8, 12], "befor": [118, 127, 129], "being": 16, "below": 25, "best": 111, "better": 91, "bg": [1, 4], "big": 34, "blind": [8, 47], "blog": 11, "bluebrain": 47, "brain": [3, 19, 34, 47, 111, 116, 127, 129, 131], "brainatla": 34, "brainglob": [2, 3, 5, 8, 10, 12, 13, 14, 16, 17, 19, 20, 21, 24, 26, 27, 28, 29, 31, 36, 38, 39, 40, 45, 46, 51, 52, 55, 56, 58, 68, 101, 110, 111, 113, 114], "brainglobeatla": 49, "brainmapp": [6, 59, 62, 65, 87, 88, 116, 117], "brainreg": [5, 13, 37, 69, 73, 77], "brainrend": [5, 7, 78, 79, 84, 111, 120, 127], "braintrac": 34, "brainwai": 34, "brainwid": 130, "bug": 44, "build": 128, "built": 34, "bulk": 129, "camera": [74, 82], "can": [16, 40, 45, 89], "candid": [60, 61, 90, 92], "cannot": 64, "cavefish": [8, 47], "ccf": 47, "cell": [30, 59, 60, 61, 84, 90, 91, 92, 94, 95, 111, 116, 121, 130], "cellfind": [5, 9, 14, 15, 16, 29, 30, 38, 39, 65, 68, 87, 88, 91, 92, 95, 96, 97, 111, 121, 122], "chan": 111, "chang": [16, 37, 38, 40], "changelog": [13, 14, 15, 17, 40], "channel": [63, 73], "check": [74, 105], "citat": [28, 46, 52, 56, 69, 78], "cite": [28, 51, 65, 87, 113], "class": [55, 80], "classif": [9, 61, 90, 91, 92, 97, 122], "clearfind": 34, "cli": [38, 39], "code": 23, "codebas": 24, "coder": 111, "command": [25, 37, 48, 62, 65, 70, 72, 87, 116], "commandlineinputerror": 64, "commit": 33, "common": [64, 71, 89], "commun": [34, 35, 111], "comput": [91, 114], "conda": [25, 40, 105], "contact": 44, "continu": 32, "contribut": [23, 44, 45, 51], "contributor": 112, "convent": [22, 27], "convolut": 89, "coordin": [25, 51, 84, 89], "cord": 47, "core": [15, 30, 38, 87, 92], "coron": 107, "correct": 74, "cortex": 47, "could": 89, "cours": 18, "cpu": 89, "creat": [23, 49, 105], "credit": 45, "current": [42, 43, 102], "dask": 92, "data": [0, 24, 32, 45, 54, 63, 67, 73, 80, 84, 85, 91, 95, 97, 98, 99, 100, 103, 104, 111, 120, 129], "dataset": 102, "dawlei": 47, "debug": [62, 64, 89], "decemb": 20, "deep": 111, "default": 24, "definit": 107, "delai": 39, "depend": [22, 27], "deriv": 47, "detail": [0, 5, 46, 47, 59, 69, 105], "detect": [30, 60, 90, 92, 94, 95, 111, 116, 121, 129], "determin": 128, "develop": [17, 23, 24, 31, 47], "development": 47, "directli": 50, "disambigu": 39, "distribut": [45, 130], "dll": 89, "do": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 45], "docker": 39, "document": [22, 23, 25, 31, 78, 101], "doe": 6, "don": 38, "download": [70, 88, 93, 103, 105, 118, 124], "drive": 91, "driver": 106, "easi": 55, "ecosystem": 114, "edg": 47, "edit": [23, 82], "els": 90, "embed": 83, "enhanc": 47, "environ": [23, 105], "errno": 64, "error": [64, 71, 89], "et": 47, "exampl": [24, 25, 107], "execut": 37, "exist": 45, "explor": 115, "export": [82, 86, 97], "extract": 45, "fail": [25, 89], "fast": 91, "fault": 71, "featur": [44, 53], "feedstock": 25, "fetch": 28, "field": 3, "figur": [62, 66], "file": [29, 50, 64, 66, 75], "filter": 30, "find": 89, "fish": 47, "fix": 90, "fluoresc": 129, "forg": [25, 40], "format": 28, "found": [64, 89], "freeform": 76, "from": [25, 27, 40, 47, 53, 111], "full": [13, 14, 15, 17, 40, 78, 92], "funder": 109, "further": [23, 99, 105], "futur": [0, 39, 42], "gener": [45, 56, 97, 99], "get": [44, 45, 67, 73, 89, 123], "glanc": 40, "gpu": 106, "grant": 111, "gubra": 47, "guid": [23, 24, 51, 52, 58, 65, 69, 87], "ha": [2, 3, 4, 8, 12, 14], "har": 111, "hard": 91, "have": [1, 15, 38], "heatmap": 51, "help": 99, "hemispher": 49, "here": 17, "hierarchi": 49, "highlight": 25, "histologi": [20, 21, 114], "hood": 16, "hook": 33, "horizont": 107, "how": [2, 3, 6, 8, 12, 16, 45, 59, 69], "html": 86, "human": 47, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 38, 40, 45, 91, 105], "imag": [39, 57, 63, 84, 107, 111, 131], "imio": 10, "importerror": 89, "improv": [23, 71, 90], "incorrect": 74, "individu": 101, "info": 89, "inform": [23, 31, 59], "initi": [45, 111], "inspect": 45, "instal": [6, 27, 40, 46, 51, 52, 55, 57, 59, 68, 69, 70, 79, 87, 88, 101, 102, 105, 106, 118], "instruct": [53, 89], "instructor": [20, 21], "integr": 32, "interest": 53, "interfac": [48, 62], "introduct": [0, 19, 23, 24, 53, 55, 63, 78, 91, 105, 106, 127, 129], "io": 57, "issu": [42, 43, 91], "iter": 55, "its": 59, "join": 111, "jupyt": 83, "kim": 47, "know": 17, "lab": 47, "last": 42, "layer": 53, "lazi": 92, "leadership": 112, "learn": 111, "like": 89, "line": [25, 37, 48, 62, 65, 70, 72, 87, 116], "load": [54, 57, 73, 84, 89, 92, 95, 97], "locat": [20, 21], "look": 89, "lsfm": 47, "magellanmapp": 34, "mai": 42, "main": [5, 9], "mandatori": [62, 72, 94, 95, 98], "mani": 64, "map": 111, "mask": 49, "match": [55, 85], "materi": [18, 19, 20, 21], "max": 47, "media": 111, "merg": [1, 10, 15], "mesh": [45, 49], "messag": [64, 71, 89], "meta": 27, "metadata": 49, "metapackag": [25, 59], "method": 82, "methodologi": 30, "mexican": [8, 47], "mexicanum": 2, "microscopi": [19, 111], "microtu": 12, "migrat": 39, "miniconda": 105, "misc": [72, 94, 98], "model": [88, 93], "modul": 89, "more": [0, 46], "morphapi": 102, "morphologi": [84, 103], "mous": [3, 47], "mouselight": 103, "move": 14, "mpin": 103, "name": 1, "napari": [6, 15, 19, 20, 21, 37, 38, 53, 59, 70, 73, 87, 96, 111, 124, 132], "navig": 54, "need": [1, 4, 5, 7, 9, 10, 13, 14, 15, 17, 45], "network": [91, 92, 97, 98, 99, 122], "neuro": 114, "neuromorpho": 103, "neuron": 84, "neurosci": 111, "neuroscientist": 111, "new": [1, 2, 3, 6, 8, 12, 23, 25, 26, 28, 39, 45, 98], "niftyreg": 76, "note": [16, 36, 65, 74], "notebook": [78, 83], "novemb": 43, "numer": [59, 115], "nvidia": 106, "object": 49, "ochrogast": 12, "octob": 21, "offset": [55, 85], "older": 68, "ongo": 43, "onli": 62, "open": [64, 111], "opencv": 89, "option": [62, 70, 72, 94, 98], "order": 22, "organis": 63, "orient": [74, 107, 128], "oserror": 64, "other": [43, 44, 47, 51, 53, 80], "output": [66, 75, 77], "over": 55, "overview": [20, 21, 40], "own": [59, 84], "p56": 47, "packag": [39, 88], "paprica": 34, "paramet": [73, 76, 94, 95, 98], "part": [59, 62], "path": [29, 64], "pattern": 56, "peopl": 112, "perform": [9, 62, 71, 90], "pin": [25, 27], "pip": 27, "pipelin": 92, "plan": 7, "planck": 47, "plane": 51, "platform": 111, "plugin": [37, 38, 53, 70, 73, 87, 96], "point": [59, 66], "posit": [51, 74], "power": 111, "practic": 24, "prairi": [12, 47], "pre": [33, 88, 93, 99], "prerequisit": [20, 21, 54, 59], "previou": 18, "previous": 38, "princeton": 47, "principl": 24, "probe": 127, "problem": [71, 90], "programmat": 45, "progress": 42, "project": [43, 55], "public": 113, "publish": 25, "pull": 23, "put": 91, "pypi": [27, 59], "python": [39, 49, 111, 114], "pytorch": [9, 106], "q1": 42, "q2": [42, 43], "q3": 42, "q4": [42, 43], "queri": 49, "question": 44, "rat": 47, "raw": 67, "refer": 47, "refin": 47, "regen": 2, "regener": 27, "region": [49, 51], "regist": [73, 84, 85, 131], "registr": [37, 66, 71, 72, 73, 76, 116, 127, 129], "relat": 123, "releas": [5, 6, 9, 13, 14, 25, 36, 43], "remov": 82, "renam": 4, "render": [82, 83, 104], "report": 89, "repositori": [28, 31, 39], "request": [23, 44], "requir": [63, 70, 88, 106], "resolut": [55, 85], "restructur": [16, 36], "result": [45, 59, 67, 92, 115, 119], "retrain": [97, 98, 99, 122], "roadmap": [41, 42], "rodent": 47, "run": [62, 73, 92, 95, 98, 117], "sampl": 128, "save": [57, 92, 95], "scene": [80, 82, 83], "schedul": 19, "screenshot": 86, "script": 45, "section": 107, "segment": [5, 13, 37, 52, 53, 71, 125, 126], "separ": [83, 92], "set": [73, 89, 95, 98, 106, 108, 118], "setup": 105, "silicon": 127, "sinc": 42, "size": 107, "slice": 51, "slow": 91, "smooth": 47, "softwar": 34, "sourc": 111, "space": [4, 47, 55, 62, 85, 107], "spaceconvent": 55, "spatial": 22, "specif": [31, 80, 91, 123], "specifi": 89, "speed": 91, "spike": 114, "spinal": 47, "spragu": 47, "stack": 49, "stai": 16, "standalon": 52, "standard": 62, "start": [67, 73, 99, 118, 123], "statu": [42, 43], "stori": 111, "strategi": 99, "streamlin": 84, "structur": [30, 49, 63, 126], "submodul": [28, 57], "suggest": 19, "summari": 59, "suppli": 100, "support": [22, 28, 39, 84, 102, 106], "sure": 45, "surfac": 84, "t": [38, 89], "talk": 114, "tbc": 43, "technic": 90, "templat": 128, "tensorflow": [9, 89], "test": [32, 62], "than": 68, "theori": 99, "thing": [89, 91], "through": 124, "too": 64, "tool": [24, 28, 31, 33, 37, 39, 56, 65, 70, 72, 87, 101, 116], "touch": 44, "trace": [127, 129], "track": [125, 127, 129], "train": [88, 91, 92, 93, 97, 98, 99, 100], "transform": 59, "tree": 27, "trigger": 25, "troubleshoot": [71, 87, 90], "try": 91, "tutori": [19, 65, 116, 123], "two": 111, "type": [80, 84], "unam": 47, "under": [1, 16], "unifi": 47, "unrecogn": 64, "up": [19, 73, 91, 106, 108, 118], "updat": [5, 9, 16, 38, 39, 40, 45, 101], "upload": 45, "us": [2, 3, 6, 8, 12, 20, 21, 38, 49, 50, 51, 56, 59, 78, 83, 84, 87, 91, 92, 100, 105, 111], "usag": [46, 54, 55, 56, 62, 72, 77, 81, 102], "user": [17, 24, 51, 52, 58, 65, 69, 87], "util": [5, 10, 28, 58], "v1": [43, 68], "v2": 43, "v3": 43, "version": [5, 9, 13, 14, 16, 17, 27, 33, 36, 37, 38, 39, 40, 47, 68], "via": [27, 59], "video": 86, "visual": [0, 51, 80, 127, 129], "visualis": [67, 77, 111, 119, 120, 132], "vole": [12, 47], "volum": 84, "voxel": 107, "vvasp": 34, "wai": [16, 44, 87], "warn": 39, "waxholm": 47, "we": [2, 3, 8, 12], "what": [1, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17, 45], "whole": [19, 111, 116, 131], "why": [2, 3, 8, 12, 111], "widget": [6, 59], "window": 83, "within": 59, "work": 82, "workflow": [5, 14, 25, 29, 38, 39, 68, 99], "wrap": 19, "you": [17, 45, 118], "your": [53, 54, 67, 80, 83, 84, 91, 105, 106, 120], "zebrafish": [47, 103], "zuckerberg": 111}}) \ No newline at end of file +Search.setIndex({"alltitles": {"2D filtering": [[30, "d-filtering"]], "3D Edge-Aware Refined Atlases Derived from the Allen Developing Mouse Brain Atlases": [[47, "d-edge-aware-refined-atlases-derived-from-the-allen-developing-mouse-brain-atlases"]], "3D filtering": [[30, "id1"]], "3D version of the Allen mouse spinal cord atlas": [[47, "d-version-of-the-allen-mouse-spinal-cord-atlas"]], "A mouse brain atlas with barrel field annotations has been added to BrainGlobe": [[3, null]], "A note about the camera position": [[74, "a-note-about-the-camera-position"]], "AZBA: A 3D Adult zebrafish brain atlas": [[47, "azba-a-3d-adult-zebrafish-brain-atlas"]], "About": [[0, null]], "Accessing data": [[0, "accessing-data"]], "Activate the environment": [[105, "activate-the-environment"]], "Actors": [[80, null]], "Adding a new atlas": [[26, "adding-a-new-atlas"], [45, null]], "Adding a new supported citation format": [[28, "adding-a-new-supported-citation-format"]], "Adding actors to your scene": [[80, "adding-actors-to-your-scene"]], "Adding new repositories or tools": [[28, "adding-new-repositories-or-tools"]], "Adding/removing actors": [[82, "adding-removing-actors"]], "Additional options": [[62, "additional-options"], [72, "additional-options"]], "Advanced installation": [[79, "advanced-installation"]], "Affine registration": [[76, "affine-registration"]], "Aligning Big Brains & Atlases": [[34, "aligning-big-brains-atlases"]], "Aligning samples for template building": [[128, null]], "Aligning spikes to histology with BrainGlobe": [[114, "aligning-spikes-to-histology-with-brainglobe"]], "Aligning to atlas\u2019s space": [[85, "aligning-to-atlass-space"]], "All cell detection parameters": [[94, null]], "All point information": [[59, "all-point-information"]], "Allen Adult Mouse Brain Atlas": [[47, "allen-adult-mouse-brain-atlas"]], "Allen Human Brain Atlas": [[47, "allen-human-brain-atlas"]], "Allen Morphology": [[103, "allen-morphology"]], "Amphibian": [[47, "amphibian"]], "An Atlas for the regenerative Ambystoma mexicanum (axolotl) has been added to BrainGlobe": [[2, null]], "An atlas for the Blind Mexican Cavefish has been added to BrainGlobe": [[8, null]], "An atlas for the prairie vole Microtus ochrogaster has been added to BrainGlobe": [[12, null]], "Analyse the segmented layer": [[53, "analyse-the-segmented-layer"]], "Analysing brainwide distribution of cells": [[130, null]], "Analysing segmentation from other napari plugins": [[53, null]], "Analysis": [[66, "analysis"]], "Analyze and visualize bulk fluorescence tracing data": [[129, null]], "Analyzing data": [[0, "analyzing-data"]], "Anatomical, annotation and hemispheres stack": [[49, "anatomical-annotation-and-hemispheres-stack"]], "Annotating data": [[97, "annotating-data"]], "Anything else": [[90, "anything-else"]], "Appendix: a note on cellfinder": [[16, "appendix-a-note-on-cellfinder"]], "Arguments": [[62, "arguments"], [72, "arguments"], [99, "arguments"]], "Atlas": [[72, "atlas"]], "Atlas details": [[47, null]], "Atlas generation": [[45, "atlas-generation"]], "Atlas scripts": [[45, "atlas-scripts"]], "Atlases available": [[46, "atlases-available"]], "Automated versioning": [[33, "automated-versioning"]], "Available atlases": [[47, "available-atlases"]], "Axis ordering in spatial arrays": [[22, "axis-ordering-in-spatial-arrays"]], "Basic installation": [[79, "basic-installation"]], "Basic usage": [[62, "basic-usage"], [72, "basic-usage"]], "Before tracing bulk axonal tracks": [[129, "before-tracing-bulk-axonal-tracks"]], "Before tracing probe tracks": [[127, "before-tracing-probe-tracks"]], "Before you start": [[118, "before-you-start"]], "Blind Mexican cavefish brain atlas": [[47, "blind-mexican-cavefish-brain-atlas"]], "Blog": [[11, null]], "BlueBrain Barrel Cortex Atlas": [[47, "bluebrain-barrel-cortex-atlas"]], "Brain registration to an atlas": [[127, "brain-registration-to-an-atlas"], [129, "brain-registration-to-an-atlas"]], "BrainAtlas": [[34, "brainatlas"]], "BrainGlobe": [[110, null]], "BrainGlobe Atlas API (brainglobe-atlasapi)": [[46, null]], "BrainGlobe Tools": [[24, "brainglobe-tools"]], "BrainGlobe is being restructured, version 1 is on it\u2019s way!": [[16, null]], "BrainGlobe publications": [[113, null]], "BrainGlobe restructuring (version 1) release notes": [[36, "brainglobe-restructuring-version-1-release-notes"]], "BrainGlobe tools with additional developer information": [[31, null]], "BrainGlobe version 1 is here!": [[17, null]], "BrainGlobe version 1 overview": [[40, null]], "BrainGlobe version 1.1.0 is released!": [[5, null]], "BrainGlobe: a Python ecosystem for computational (neuro)anatomy": [[114, "brainglobe-a-python-ecosystem-for-computational-neuro-anatomy"], [114, "id1"]], "BrainGlobe; An Open-Source Platform for Neuroscientists": [[111, "brainglobe-an-open-source-platform-for-neuroscientists"]], "Brainrender: visualising brain data in 3D": [[111, "brainrender-visualising-brain-data-in-3d"]], "Braintracer": [[34, "braintracer"]], "Brainways": [[34, "brainways"]], "Bugs": [[44, "bugs"]], "Bulk axonal track detection": [[129, "bulk-axonal-track-detection"]], "CPU instruction sets": [[89, "cpu-instruction-sets"]], "Can I install from conda-forge?": [[40, "can-i-install-from-conda-forge"]], "Can\u2019t find openCV": [[89, "cant-find-opencv"]], "Cell candidate classification": [[61, null], [90, "cell-candidate-classification"]], "Cell candidate detection": [[60, null], [90, "cell-candidate-detection"]], "Cell classification or training the network is slow": [[91, "cell-classification-or-training-the-network-is-slow"]], "Cell coordinates": [[84, "cell-coordinates"]], "Cell detection": [[30, "cell-detection"], [95, null]], "Cellfinder version 1.3.0 is released!": [[9, null]], "Cellfinder: Harnessing the power of deep learning to map the brain": [[111, "cellfinder-harnessing-the-power-of-deep-learning-to-map-the-brain"]], "Chan Zuckerberg Initiative awards two grants to BrainGlobe": [[111, "chan-zuckerberg-initiative-awards-two-grants-to-brainglobe"]], "Changes at-a-glance": [[40, "changes-at-a-glance"]], "Check that conda is installed": [[105, "check-that-conda-is-installed"]], "Checking orientation": [[74, null]], "Citation": [[46, "citation"], [52, "citation"], [69, "citation"], [78, "citation"]], "Citing brainglobe-heatmap": [[51, "citing-brainglobe-heatmap"]], "Citing cellfinder": [[65, "citing-cellfinder"], [87, "citing-cellfinder"]], "Classification performance": [[9, "classification-performance"]], "ClearFinder": [[34, "clearfinder"]], "Command line interface": [[48, null], [62, null]], "Command line tool": [[72, null]], "Command-line executable": [[37, "command-line-executable"]], "CommandLineInputError: File path: cannot be found.": [[64, "commandlineinputerror-file-path-cannot-be-found"]], "Common problems": [[71, "common-problems"]], "Community": [[35, null]], "Contact": [[44, null]], "Continuous integration": [[32, "continuous-integration"]], "Contributing": [[44, "contributing"], [51, "contributing"]], "Contributors": [[112, "contributors"]], "Conventions": [[22, null], [27, "conventions"]], "Coordinating releases with the documentation and the metapackage": [[25, "coordinating-releases-with-the-documentation-and-the-metapackage"]], "Coronal section": [[107, "coronal-section"]], "Correct orientation": [[74, "correct-orientation"]], "Course materials": [[18, "course-materials"]], "Courses": [[18, null]], "Create the environment": [[105, "create-the-environment"]], "Creating a BrainGlobeAtlas object": [[49, "creating-a-brainglobeatlas-object"]], "Creating a development environment": [[23, "creating-a-development-environment"]], "Current status": [[42, "current-status"], [43, "current-status"]], "Currently supported datasets": [[102, "currently-supported-datasets"]], "Data requirements": [[63, null]], "Debugging common error messages": [[64, null], [89, null]], "December 6th 2023": [[20, null]], "Default architecture for BrainGlobe Tools": [[24, "default-architecture-for-brainglobe-tools"]], "Delaying updating": [[39, "delaying-updating"]], "Dependency Pinning": [[27, "dependency-pinning"]], "Dependency Tree": [[27, "dependency-tree"]], "Dependency support": [[22, "dependency-support"]], "Details": [[5, "details"], [59, "details"], [69, "details"]], "Detecting cells in 3D with cellfinder": [[121, null]], "Determining sample orientation": [[128, null]], "Developers: what you need to know": [[17, "developers-what-you-need-to-know"]], "Developer\u2019s guide": [[23, null]], "Disambiguation": [[39, "disambiguation"]], "Documentation": [[22, "documentation"], [101, null]], "Download an atlas through napari": [[124, null]], "Download atlas (optional)": [[70, "download-atlas-optional"]], "Download miniconda": [[105, "download-miniconda"]], "Downloading data": [[103, null]], "Downloading pre-trained models": [[88, "downloading-pre-trained-models"]], "Downloading the pre-trained model in advance": [[93, null]], "Easy iteration over projections": [[55, "easy-iteration-over-projections"]], "Editing actors": [[82, "editing-actors"]], "Editing the documentation": [[23, "editing-the-documentation"]], "Embedding renderings in Jupyter notebooks": [[83, "embedding-renderings-in-jupyter-notebooks"]], "Enhanced and Unified Mouse Brain Atlas": [[47, "enhanced-and-unified-mouse-brain-atlas"]], "Error messages": [[64, "error-messages"], [71, "error-messages"], [89, "error-messages"]], "Example, highlighting pinning from below": [[25, "example-highlighting-pinning-from-below"]], "Examples": [[107, "examples"]], "Examples of guiding principles in practice": [[24, "examples-of-guiding-principles-in-practice"]], "Exploring the numerical results": [[115, null]], "Exporting data for training": [[97, "exporting-data-for-training"]], "Exporting to html": [[86, "exporting-to-html"]], "Extracting meshes": [[45, "extracting-meshes"]], "Failed workflows": [[25, "failed-workflows"]], "Feature requests": [[44, "feature-requests"]], "Figure options": [[62, "figure-options"]], "Figures": [[66, "figures"]], "Fish": [[47, "fish"]], "Fixing technical problems": [[90, "fixing-technical-problems"]], "Freeform registration": [[76, "freeform-registration"]], "From PyPI, via pip": [[27, "from-pypi-via-pip"]], "Full Changelog": [[17, "full-changelog"], [40, "full-changelog"]], "Full changelog": [[13, "full-changelog"], [14, "full-changelog"], [15, "full-changelog"]], "Full documentation": [[78, "full-documentation"]], "Funders": [[109, null]], "Further details": [[105, "further-details"]], "Further help": [[99, "further-help"]], "Further information": [[23, "further-information"]], "Future": [[0, "future"], [42, "future"]], "Future-warning": [[39, "future-warning"]], "Generate training data": [[99, "generate-training-data"]], "Generating Citations for BrainGlobe tools": [[56, null]], "Generating data to retrain the cellfinder classification network": [[97, null]], "Getting started": [[67, "getting-started"], [73, "getting-started"], [123, "getting-started"]], "Gubra\u2019s LSFM mouse brain atlas": [[47, "gubras-lsfm-mouse-brain-atlas"]], "Guiding principles for development": [[24, "guiding-principles-for-development"]], "Histology analysis using napari and BrainGlobe": [[20, "histology-analysis-using-napari-and-brainglobe"], [21, "histology-analysis-using-napari-and-brainglobe"]], "Horizontal section": [[107, "horizontal-section"]], "How are BrainGlobe atlases distributed?": [[45, "how-are-brainglobe-atlases-distributed"]], "How can I be sure I get credited for the atlas I contributed?": [[45, "how-can-i-be-sure-i-get-credited-for-the-atlas-i-contributed"]], "How can I stay updated?": [[16, "how-can-i-stay-updated"]], "How do I install it?": [[6, "how-do-i-install-it"]], "How do I use it?": [[6, "how-do-i-use-it"]], "How do I use the new atlas?": [[2, "how-do-i-use-the-new-atlas"], [3, "how-do-i-use-the-new-atlas"], [8, "how-do-i-use-the-new-atlas"], [12, "how-do-i-use-the-new-atlas"]], "How to generate an atlas programmatically?": [[45, "how-to-generate-an-atlas-programmatically"]], "How to install": [[59, "how-to-install"], [69, "how-to-install"]], "How to use": [[59, "how-to-use"]], "Human": [[47, "human"]], "I have not updated to brainglobe-workflows, and I use the cellfinder CLI": [[38, "i-have-not-updated-to-brainglobe-workflows-and-i-use-the-cellfinder-cli"]], "I have not updated to brainglobe-workflows, but I don\u2019t use the cellfinder CLI": [[38, "i-have-not-updated-to-brainglobe-workflows-but-i-dont-use-the-cellfinder-cli"]], "I previously updated to brainglobe-workflows": [[38, "i-previously-updated-to-brainglobe-workflows"]], "INFO:tensorflow:Error reported to Coordinator: Failed to get convolution algorithm": [[89, "info-tensorflow-error-reported-to-coordinator-failed-to-get-convolution-algorithm"]], "Image IO submodule": [[57, null]], "Image channels": [[63, "image-channels"]], "Image data": [[84, "image-data"]], "Image space definition": [[107, null]], "Image structure": [[63, "image-structure"]], "ImportError: DLL load failed: The specified module could not be found.": [[89, "importerror-dll-load-failed-the-specified-module-could-not-be-found"]], "Improving algorithm performance": [[90, "improving-algorithm-performance"]], "Improving registration performance": [[71, "improving-registration-performance"]], "Incorrect orientation": [[74, "incorrect-orientation"]], "Individual Tool Documentation": [[101, "individual-tool-documentation"]], "Inspecting results": [[45, "inspecting-results"]], "Install miniconda": [[105, "install-miniconda"]], "Installation": [[27, "installation"], [46, "installation"], [51, "installation"], [52, "installation"], [55, "installation"], [57, "installation"], [68, "installation"], [70, "installation"], [87, "installation"], [88, null], [102, "installation"], [105, "installation"], [106, "installation"]], "Installation and download": [[118, "installation-and-download"]], "Installing BrainGlobe": [[101, "installing-brainglobe"]], "Installing Individual Tools": [[101, "installing-individual-tools"]], "Installing NVIDIA drivers": [[106, "installing-nvidia-drivers"]], "Installing PyTorch with GPU support": [[106, "installing-pytorch-with-gpu-support"]], "Installing as part of the metapackage": [[59, null]], "Installing brainmapper": [[88, "installing-brainmapper"]], "Installing brainrender": [[79, null]], "Installing on its own via PyPI": [[59, null]], "Installing the cellfinder package": [[88, "installing-the-cellfinder-package"]], "Installing the command line tool": [[70, null]], "Installing the napari plugin": [[70, null]], "Installing with cellfinder versions older than v1.0.0": [[68, "installing-with-cellfinder-versions-older-than-v1-0-0"]], "Installing within napari": [[59, null]], "Instructions": [[53, "instructions"]], "Instructors": [[20, "instructors"], [21, "instructors"]], "Introduction": [[0, "introduction"], [19, "introduction"], [23, "introduction"], [53, "introduction"], [55, "introduction"], [63, "introduction"], [78, "introduction"], [91, "introduction"], [105, "introduction"], [106, "introduction"], [127, "introduction"], [129, "introduction"]], "Introduction to the BrainGlobe codebase for developers": [[24, null]], "Issues": [[42, "issues"], [43, "issues"]], "Kim Lab Developmental CCF (P56)": [[47, "kim-lab-developmental-ccf-p56"]], "Leadership": [[112, "leadership"]], "Loading data": [[73, "loading-data"], [95, "loading-data"], [97, "loading-data"]], "Loading images": [[57, "loading-images"]], "Loading the data": [[84, "loading-the-data"]], "Location": [[20, "location"], [21, "location"]], "MagellanMapper": [[34, "magellanmapper"]], "Main updates": [[5, "main-updates"], [9, "main-updates"]], "Mandatory": [[62, "mandatory"], [72, "mandatory"], [94, "mandatory"], [98, "mandatory"]], "Mandatory parameters": [[95, "mandatory-parameters"]], "Matching resolution and offset": [[85, "matching-resolution-and-offset"]], "Matching space resolutions and offsets": [[55, "matching-space-resolutions-and-offsets"]], "Materials": [[19, "materials"], [20, "materials"], [21, "materials"]], "Max Planck zebrafish brain atlas": [[47, "max-planck-zebrafish-brain-atlas"]], "May 2024": [[42, null]], "Media": [[111, null]], "Metadata": [[49, "metadata"]], "Methodology": [[30, "methodology"]], "Methods": [[82, "methods"]], "Misc options": [[72, "misc-options"], [94, "misc-options"], [98, "misc-options"]], "More details": [[0, "more-details"], [46, "more-details"]], "Mouse": [[47, "mouse"]], "MouseLight": [[103, "mouselight"]], "Mpin Zebrafish": [[103, "mpin-zebrafish"]], "Napari plugin": [[73, null]], "Navigating": [[54, "navigating"]], "Network": [[98, "network"]], "Neuromorpho": [[103, "neuromorpho"]], "Neuron morphology": [[84, "neuron-morphology"]], "New brainmapper napari widget released": [[6, null]], "NiftyReg": [[76, "niftyreg"]], "Notes": [[65, "notes"]], "November 2023": [[43, null]], "Numerical results": [[59, "numerical-results"]], "OSError: [Errno 24] Too many open files": [[64, "oserror-errno-24-too-many-open-files"]], "October 7th-8th 2024": [[21, null]], "On the command line": [[25, "on-the-command-line"]], "Only run parts of brainmapper": [[62, "only-run-parts-of-brainmapper"]], "Optional": [[94, "optional"], [98, "optional"]], "Optional Arguments": [[62, "optional-arguments"]], "Organisation": [[63, "organisation"]], "Orientation": [[107, "orientation"]], "Other ongoing projects (release TBC)": [[43, "other-ongoing-projects-release-tbc"]], "Other rodent": [[47, "other-rodent"]], "Other ways to get in touch": [[44, "other-ways-to-get-in-touch"]], "Output files": [[66, null], [75, null]], "Overview": [[20, "overview"], [21, "overview"]], "People": [[112, null]], "Performance, debugging and testing": [[62, "performance-debugging-and-testing"]], "Plans for brainrender": [[7, null]], "Points": [[66, "points"]], "Points summary": [[59, "points-summary"]], "Prairie vole brain atlas": [[47, "prairie-vole-brain-atlas"]], "Pre-commit hooks": [[33, "pre-commit-hooks"]], "Pre-trained network": [[99, "pre-trained-network"]], "Prerequisites": [[20, "prerequisites"], [21, "prerequisites"], [54, null], [59, "prerequisites"]], "Previous courses": [[18, "previous-courses"]], "Princeton Mouse Brain Atlas": [[47, "princeton-mouse-brain-atlas"]], "Probe track tracing": [[127, "probe-track-tracing"]], "Progress since the last roadmap": [[42, "progress-since-the-last-roadmap"]], "Publications citing BrainGlobe": [[113, "publications-citing-brainglobe"]], "Publishing new releases": [[25, null]], "Pull requests": [[23, "pull-requests"]], "Put your data on a fast hard drive": [[91, "put-your-data-on-a-fast-hard-drive"]], "PyTorch backend": [[9, "pytorch-backend"]], "Python API": [[49, null]], "Python version support": [[39, "python-version-support"]], "Q1 2025": [[42, "q1-2025"]], "Q2 2025": [[42, "q2-2025"]], "Q3 2024": [[42, "q3-2024"]], "Q4 2024": [[42, "q4-2024"]], "Query for hemispheres": [[49, "query-for-hemispheres"]], "Query for structures": [[49, "query-for-structures"]], "Query the atlas": [[49, "query-the-atlas"]], "Questions": [[44, "questions"]], "Rat": [[47, "rat"]], "Regenerating the Dependency Tree": [[27, "regenerating-the-dependency-tree"]], "Region masks": [[49, "region-masks"]], "Regions coordinates": [[51, "regions-coordinates"]], "Regions hierarchy": [[49, "regions-hierarchy"]], "Regions meshes": [[49, "regions-meshes"]], "Registering a whole-brain image to an atlas": [[131, null]], "Registering additional channels": [[73, "registering-additional-channels"]], "Registering data": [[85, null]], "Registering your data": [[84, "registering-your-data"]], "Registration": [[66, "registration"]], "Registration backend": [[72, "registration-backend"]], "Registration options": [[72, "registration-options"]], "Registration parameters": [[76, null]], "Related tutorials": [[123, "related-tutorials"]], "Releases": [[36, null]], "Rendering and exporting": [[82, "rendering-and-exporting"]], "Rendering data": [[104, null]], "Rendering your scene in a separate window": [[83, "rendering-your-scene-in-a-separate-window"]], "Requirements": [[70, null], [88, "requirements"], [106, "requirements"]], "Results": [[59, "results"]], "Retraining the cellfinder classification network": [[122, null]], "Retraining the network for new data": [[98, null]], "Retraining the pre-trained network": [[99, null]], "Roadmaps": [[41, null]], "Run training": [[98, "run-training"]], "Running brainmapper": [[117, null]], "Running brainreg": [[73, "running-brainreg"]], "Running cellfinder": [[95, "running-cellfinder"]], "Running the cell candidate detection and classification separately": [[92, "running-the-cell-candidate-detection-and-classification-separately"]], "Saving data": [[95, "saving-data"]], "Saving images": [[57, "saving-images"]], "Saving the results": [[92, "saving-the-results"]], "Scene": [[82, null]], "Screenshots": [[86, "screenshots"]], "Segmentation fault": [[71, "segmentation-fault"]], "Segmenting 2/3D structures": [[126, null]], "Segmenting a 1D track": [[125, null]], "Segmenting your feature of interest": [[53, "segmenting-your-feature-of-interest"]], "Set parameters": [[98, "set-parameters"]], "Setting additional parameters": [[73, "setting-additional-parameters"]], "Setting parameters": [[95, "setting-parameters"]], "Setting up": [[108, null], [118, null]], "Setting up registration": [[73, "setting-up-registration"]], "Setting up your GPU": [[106, null]], "Setup your conda environment": [[105, "setup-your-conda-environment"]], "Silicon probe tracking": [[127, null]], "Slicing plane position": [[51, "slicing-plane-position"]], "Smoothed version of the Kim et al. mouse reference atlas": [[47, "smoothed-version-of-the-kim-et-al-mouse-reference-atlas"]], "Software built by the community": [[34, null]], "Specific Issues": [[91, "specific-issues"]], "Specific Repository Developer Documentation": [[31, null]], "Specific actor classes": [[80, "specific-actor-classes"]], "Specific applications": [[123, "specific-applications"]], "Speeding up cellfinder": [[91, null]], "Standalone installation": [[52, "standalone-installation"]], "Standard space options": [[62, "standard-space-options"]], "Start training": [[99, "start-training"]], "Starting the plugin": [[73, "starting-the-plugin"]], "Streamlines": [[84, "streamlines"]], "Structure detection": [[30, "structure-detection"]], "Suggested schedule": [[19, "suggested-schedule"]], "Supported data types": [[84, "supported-data-types"]], "Talks": [[114, null]], "TensorFlow backend": [[9, "tensorflow-backend"]], "Test data": [[32, "test-data"]], "Testing": [[32, null]], "The SpaceConvention class": [[55, "the-spaceconvention-class"]], "The best neuroscience stories from April 2020": [[111, "the-best-neuroscience-stories-from-april-2020"]], "Theory": [[99, "theory"]], "Things that look like errors, but aren\u2019t:": [[89, "things-that-look-like-errors-but-arent"]], "Things to Try": [[91, "things-to-try"]], "To contribute a new atlas": [[23, "to-contribute-a-new-atlas"]], "To contribute code": [[23, "to-contribute-code"]], "To improve the documentation": [[23, "to-improve-the-documentation"]], "To load your data": [[54, "to-load-your-data"]], "To run the full pipeline (cell candidate detection and classification)": [[92, "to-run-the-full-pipeline-cell-candidate-detection-and-classification"]], "Tooling": [[33, null]], "Training": [[98, "training"]], "Training data generation strategy": [[99, "training-data-generation-strategy"]], "Training the network": [[92, "training-the-network"], [99, "training-the-network"]], "Transformed points": [[59, "transformed-points"]], "Triggering a new release": [[25, "triggering-a-new-release"]], "Troubleshooting": [[71, null], [87, "troubleshooting"], [90, null]], "Tutorial": [[116, "tutorial"]], "Tutorials": [[19, "tutorials"], [65, "tutorials"], [123, null]], "UNAM Axolotl Brain Atlas": [[47, "unam-axolotl-brain-atlas"]], "Under the hood?": [[16, "under-the-hood"]], "Updating": [[38, "updating"], [101, "updating"]], "Updating an existing atlas": [[45, "updating-an-existing-atlas"]], "Updating to the new cellfinder (CLI) tool": [[39, "updating-to-the-new-cellfinder-cli-tool"]], "Updating to version 1": [[40, "updating-to-version-1"]], "Uploading the atlas": [[45, "uploading-the-atlas"]], "Usage": [[46, "usage"], [54, "usage"], [55, "usage"], [77, "usage"], [81, null], [102, "usage"]], "Usage Pattern": [[56, "usage-pattern"]], "Use a better computer": [[91, "use-a-better-computer"]], "User Guide": [[65, "user-guide"]], "User data": [[24, "user-data"]], "User guide": [[51, "user-guide"], [52, "user-guide"], [58, "user-guide"], [69, "user-guide"], [87, "user-guide"]], "Users: what you need to know": [[17, "users-what-you-need-to-know"]], "Using Notebooks": [[78, "using-notebooks"], [83, null]], "Using brainglobe-heatmap with other atlases": [[51, "using-brainglobe-heatmap-with-other-atlases"]], "Using conda": [[105, null]], "Using dask for lazy loading": [[92, "using-dask-for-lazy-loading"]], "Using deep learning to aid 3D cell detection in whole brain microscopy images": [[111, "using-deep-learning-to-aid-3d-cell-detection-in-whole-brain-microscopy-images"]], "Using supplied training data": [[100, null]], "Using the atlas": [[49, "using-the-atlas"]], "Using the files directly": [[50, null]], "Using the tool": [[56, "using-the-tool"]], "Using the widget": [[59, "using-the-widget"]], "Using your own data in brainrender": [[84, null]], "Version 1 of brainreg and brainglobe-segmentation released": [[13, null]], "Version 1: Cellfinder migration and brainglobe-workflows": [[39, null]], "Version 1: changes to registration and segmentation tools": [[37, null]], "Version 1: changes to the cellfinder backend and plugin": [[38, null]], "Versioning": [[27, "versioning"], [33, "versioning"]], "Videos": [[86, "videos"]], "Videos, animations and exporting to html": [[86, null]], "Visualisation": [[67, null]], "Visualise an atlas in napari": [[132, null]], "Visualising brainreg output": [[77, null]], "Visualising the results": [[119, null]], "Visualising your data in brainrender": [[120, null]], "Visualising your raw data": [[67, "visualising-your-raw-data"]], "Visualising your results": [[67, "visualising-your-results"]], "Visualization": [[51, "visualization"]], "Visualize the probe track with brainrender": [[127, "visualize-the-probe-track-with-brainrender"]], "Visualizing data": [[0, "visualizing-data"]], "Visualizing other types of data": [[80, "visualizing-other-types-of-data"]], "Voxel sizes": [[107, "voxel-sizes"]], "Waxholm Space atlas of the Sprague Dawley rat brain": [[47, "waxholm-space-atlas-of-the-sprague-dawley-rat-brain"]], "Ways to use cellfinder": [[87, "ways-to-use-cellfinder"]], "What data do you need to contribute an atlas to the BrainGlobe Initiative?": [[45, "what-data-do-you-need-to-contribute-an-atlas-to-the-brainglobe-initiative"]], "What do I need to do?": [[1, "what-do-i-need-to-do"], [4, "what-do-i-need-to-do"], [5, "what-do-i-need-to-do"], [7, "what-do-i-need-to-do"], [9, "what-do-i-need-to-do"], [10, "what-do-i-need-to-do"], [13, "what-do-i-need-to-do"], [14, "what-do-i-need-to-do"], [15, "what-do-i-need-to-do"]], "What does it do?": [[6, "what-does-it-do"]], "What is changing?": [[16, "what-is-changing"]], "Whole brain cell detection and registration with the brainmapper command line tool": [[116, null]], "Whole brain microscopy analysis with BrainGlobe and napari": [[19, null]], "Why These Python Coders are Joining the napari Community": [[111, "why-these-python-coders-are-joining-the-napari-community"]], "Why are we adding new atlases?": [[2, "why-are-we-adding-new-atlases"], [3, "why-are-we-adding-new-atlases"], [8, "why-are-we-adding-new-atlases"], [12, "why-are-we-adding-new-atlases"]], "Workflow": [[99, "workflow"]], "Workflow for publishing new releases": [[25, "workflow-for-publishing-new-releases"]], "Working with cameras": [[82, "working-with-cameras"]], "Wrap-up": [[19, "wrap-up"]], "bg-atlasapi and bg-atlasgen have merged under a new name": [[1, null]], "bg-space has been renamed": [[4, null]], "brainglobe-atlasapi": [[5, "brainglobe-atlasapi"], [26, null]], "brainglobe-heatmap": [[51, null]], "brainglobe-meta": [[27, null]], "brainglobe-segmentation": [[5, "brainglobe-segmentation"], [52, null]], "brainglobe-space": [[55, null]], "brainglobe-utils": [[5, "brainglobe-utils"], [28, null], [58, null]], "brainglobe-workflows": [[5, "brainglobe-workflows"], [29, null], [38, "brainglobe-workflows"], [39, "brainglobe-workflows"], [68, null]], "brainmapper cell transformation widget": [[59, null]], "brainmapper command line tool": [[65, null]], "brainmapper command-line tool": [[87, "brainmapper-command-line-tool"]], "brainreg": [[5, "brainreg"], [69, null]], "brainreg and brainreg-napari": [[37, "brainreg-and-brainreg-napari"]], "brainreg-segment": [[37, "brainreg-segment"]], "brainrender": [[5, "brainrender"], [78, null]], "cellfinder": [[5, "cellfinder"], [87, null]], "cellfinder (Docker image)": [[39, "cellfinder-docker-image"]], "cellfinder (package)": [[39, "cellfinder-package"]], "cellfinder (repository)": [[39, "cellfinder-repository"]], "cellfinder file paths": [[29, "cellfinder-file-paths"]], "cellfinder has moved: version 1 of brainglobe-workflows released": [[14, null]], "cellfinder napari plugin": [[87, "cellfinder-napari-plugin"], [96, null]], "cellfinder-core": [[38, "cellfinder-core"]], "cellfinder-core and cellfinder-napari have merged": [[15, null]], "cellfinder-napari": [[38, "cellfinder-napari"]], "cellfinder.core": [[30, null], [87, "cellfinder-core"]], "cellfinder.core API": [[92, null]], "citation.fetch": [[28, "citation-fetch"]], "citation.format and the citation.*_fmt submodules": [[28, "citation-format-and-the-citation-fmt-submodules"]], "citation.repositories": [[28, "citation-repositories"]], "cite-brainglobe and the citation submodule": [[28, "cite-brainglobe-and-the-citation-submodule"]], "conda-forge feedstocks": [[25, "conda-forge-feedstocks"]], "error: unrecognized arguments": [[64, "error-unrecognized-arguments"]], "imio will be merging into brainglobe-utils": [[10, null]], "morphapi": [[102, null]], "napari plugin": [[37, "napari-plugin"]], "pAPRica": [[34, "paprica"]], "v1 (Q4 2023)": [[43, "v1-q4-2023"]], "v2 (Q2 2024)": [[43, "v2-q2-2024"]], "v3 (Q4 2024)": [[43, "v3-q4-2024"]], "volume -> surface": [[84, "volume-surface"]], "vvasp": [[34, "vvasp"]]}, "docnames": ["about", "blog/atlasapi-atlasgen-merge", "blog/axolotl-atlas-added", "blog/barrel-atlas-added", "blog/bg-space-rename", "blog/brainglobe-v1_1", "blog/brainmapper-widget", "blog/brainrender-megafix", "blog/cavefish-atlas-added", "blog/cellfinder-v1_3", "blog/imio-retirement", "blog/index", "blog/prairie-vole-atlas-added", "blog/version1/brainreg_update_live", "blog/version1/cellfinder_migration_live", "blog/version1/core_and_napari_merge", "blog/version1/version_1_announcement", "blog/version1/version_1_released", "community/courses/index", "community/courses/materials/whole-brain-analysis/index", "community/courses/scheduled/dec-2023/index", "community/courses/scheduled/oct-2024/index", "community/developers/conventions", "community/developers/index", "community/developers/intro_to_codebase", "community/developers/new_releases", "community/developers/repositories/brainglobe-atlasapi/index", "community/developers/repositories/brainglobe-meta/index", "community/developers/repositories/brainglobe-utils/index", "community/developers/repositories/brainglobe-workflows/index", "community/developers/repositories/cellfinder-core/index", "community/developers/specific_repos", "community/developers/testing", "community/developers/tooling", "community/external-tools", "community/index", "community/releases/index", "community/releases/v1/brainreg", "community/releases/v1/cellfinder-core-and-plugin-merge", "community/releases/v1/cellfinder-migration", "community/releases/v1/index", "community/roadmaps/index", "community/roadmaps/may-2024", "community/roadmaps/november-2023", "contact", "documentation/brainglobe-atlasapi/adding-a-new-atlas", "documentation/brainglobe-atlasapi/index", "documentation/brainglobe-atlasapi/usage/atlas-details", "documentation/brainglobe-atlasapi/usage/command-line-interface", "documentation/brainglobe-atlasapi/usage/python-api", "documentation/brainglobe-atlasapi/usage/using-the-files-directly", "documentation/brainglobe-heatmap/index", "documentation/brainglobe-segmentation/index", "documentation/brainglobe-segmentation/user-guide/analysing-external-segmentation", "documentation/brainglobe-segmentation/user-guide/index", "documentation/brainglobe-space/index", "documentation/brainglobe-utils/citation-module", "documentation/brainglobe-utils/image_io", "documentation/brainglobe-utils/index", "documentation/brainglobe-utils/transform-widget", "documentation/brainglobe-workflows/brainmapper/candidate-detection", "documentation/brainglobe-workflows/brainmapper/classification", "documentation/brainglobe-workflows/brainmapper/cli", "documentation/brainglobe-workflows/brainmapper/data-requirements", "documentation/brainglobe-workflows/brainmapper/error-messages", "documentation/brainglobe-workflows/brainmapper/index", "documentation/brainglobe-workflows/brainmapper/output-files", "documentation/brainglobe-workflows/brainmapper/visualisation", "documentation/brainglobe-workflows/index", "documentation/brainreg/index", "documentation/brainreg/installation", "documentation/brainreg/troubleshooting", "documentation/brainreg/user-guide/brainreg-cli", "documentation/brainreg/user-guide/brainreg-napari", "documentation/brainreg/user-guide/checking-orientation", "documentation/brainreg/user-guide/output-files", "documentation/brainreg/user-guide/parameters", "documentation/brainreg/user-guide/visualisation", "documentation/brainrender/index", "documentation/brainrender/installation", "documentation/brainrender/usage/actors", "documentation/brainrender/usage/index", "documentation/brainrender/usage/scene", "documentation/brainrender/usage/using-notebooks", "documentation/brainrender/usage/using-your-data/index", "documentation/brainrender/usage/using-your-data/registering-data", "documentation/brainrender/usage/videos-animations-and-exporting-to-html", "documentation/cellfinder/index", "documentation/cellfinder/installation", "documentation/cellfinder/troubleshooting/error-messages", "documentation/cellfinder/troubleshooting/index", "documentation/cellfinder/troubleshooting/speed-up", "documentation/cellfinder/user-guide/cellfinder-core", "documentation/cellfinder/user-guide/cellfinder-download", "documentation/cellfinder/user-guide/napari-plugin/all-cell-detection-parameters", "documentation/cellfinder/user-guide/napari-plugin/cell-detection", "documentation/cellfinder/user-guide/napari-plugin/index", "documentation/cellfinder/user-guide/napari-plugin/training-data-generation", "documentation/cellfinder/user-guide/napari-plugin/training-the-network", "documentation/cellfinder/user-guide/training/index", "documentation/cellfinder/user-guide/training/using-supplied-data", "documentation/index", "documentation/morphapi/index", "documentation/morphapi/usage/downloading-data", "documentation/morphapi/usage/rendering-data", "documentation/setting-up/conda", "documentation/setting-up/gpu", "documentation/setting-up/image-definition", "documentation/setting-up/index", "funders", "index", "media", "people", "publications", "talks", "tutorials/brainmapper/exploring-the-numerical-results", "tutorials/brainmapper/index", "tutorials/brainmapper/running-brainmapper", "tutorials/brainmapper/setting-up", "tutorials/brainmapper/visualising-the-results", "tutorials/brainmapper/visualising-your-data-in-brainrender", "tutorials/cellfinder-detection", "tutorials/cellfinder-retraining", "tutorials/index", "tutorials/manage-atlases-in-GUI", "tutorials/segmenting-1d-tracks", "tutorials/segmenting-3d-structures", "tutorials/silicon-probe-tracking", "tutorials/template-builder-pre-align", "tutorials/tracing-tracking", "tutorials/transform-cells-atlas", "tutorials/tutorial-whole-brain-registration", "tutorials/visualise-atlas-napari"], "envversion": {"nbsphinx": 4, "sphinx": 64, "sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.intersphinx": 1, "sphinx.ext.viewcode": 1}, "filenames": ["about.md", "blog/atlasapi-atlasgen-merge.md", "blog/axolotl-atlas-added.md", "blog/barrel-atlas-added.md", "blog/bg-space-rename.md", "blog/brainglobe-v1_1.md", "blog/brainmapper-widget.md", "blog/brainrender-megafix.md", "blog/cavefish-atlas-added.md", "blog/cellfinder-v1_3.md", "blog/imio-retirement.md", "blog/index.md", "blog/prairie-vole-atlas-added.md", "blog/version1/brainreg_update_live.md", "blog/version1/cellfinder_migration_live.md", "blog/version1/core_and_napari_merge.md", "blog/version1/version_1_announcement.md", "blog/version1/version_1_released.md", "community/courses/index.md", "community/courses/materials/whole-brain-analysis/index.md", "community/courses/scheduled/dec-2023/index.md", "community/courses/scheduled/oct-2024/index.md", "community/developers/conventions.md", "community/developers/index.md", "community/developers/intro_to_codebase.md", "community/developers/new_releases.md", "community/developers/repositories/brainglobe-atlasapi/index.md", "community/developers/repositories/brainglobe-meta/index.md", "community/developers/repositories/brainglobe-utils/index.md", "community/developers/repositories/brainglobe-workflows/index.md", "community/developers/repositories/cellfinder-core/index.md", "community/developers/specific_repos.md", "community/developers/testing.md", "community/developers/tooling.md", "community/external-tools.md", "community/index.md", "community/releases/index.md", "community/releases/v1/brainreg.md", "community/releases/v1/cellfinder-core-and-plugin-merge.md", "community/releases/v1/cellfinder-migration.md", "community/releases/v1/index.md", "community/roadmaps/index.md", "community/roadmaps/may-2024.md", "community/roadmaps/november-2023.md", "contact.md", "documentation/brainglobe-atlasapi/adding-a-new-atlas.md", "documentation/brainglobe-atlasapi/index.md", "documentation/brainglobe-atlasapi/usage/atlas-details.md", "documentation/brainglobe-atlasapi/usage/command-line-interface.md", "documentation/brainglobe-atlasapi/usage/python-api.md", "documentation/brainglobe-atlasapi/usage/using-the-files-directly.md", "documentation/brainglobe-heatmap/index.md", "documentation/brainglobe-segmentation/index.md", "documentation/brainglobe-segmentation/user-guide/analysing-external-segmentation.md", "documentation/brainglobe-segmentation/user-guide/index.md", "documentation/brainglobe-space/index.md", "documentation/brainglobe-utils/citation-module.md", "documentation/brainglobe-utils/image_io.md", "documentation/brainglobe-utils/index.md", "documentation/brainglobe-utils/transform-widget.md", "documentation/brainglobe-workflows/brainmapper/candidate-detection.md", "documentation/brainglobe-workflows/brainmapper/classification.md", "documentation/brainglobe-workflows/brainmapper/cli.md", "documentation/brainglobe-workflows/brainmapper/data-requirements.md", "documentation/brainglobe-workflows/brainmapper/error-messages.md", "documentation/brainglobe-workflows/brainmapper/index.md", "documentation/brainglobe-workflows/brainmapper/output-files.md", "documentation/brainglobe-workflows/brainmapper/visualisation.md", "documentation/brainglobe-workflows/index.md", "documentation/brainreg/index.md", "documentation/brainreg/installation.md", "documentation/brainreg/troubleshooting.md", "documentation/brainreg/user-guide/brainreg-cli.md", "documentation/brainreg/user-guide/brainreg-napari.md", "documentation/brainreg/user-guide/checking-orientation.md", "documentation/brainreg/user-guide/output-files.md", "documentation/brainreg/user-guide/parameters.md", "documentation/brainreg/user-guide/visualisation.md", "documentation/brainrender/index.md", "documentation/brainrender/installation.md", "documentation/brainrender/usage/actors.md", "documentation/brainrender/usage/index.md", "documentation/brainrender/usage/scene.md", "documentation/brainrender/usage/using-notebooks.md", "documentation/brainrender/usage/using-your-data/index.md", "documentation/brainrender/usage/using-your-data/registering-data.md", "documentation/brainrender/usage/videos-animations-and-exporting-to-html.md", "documentation/cellfinder/index.md", "documentation/cellfinder/installation.md", "documentation/cellfinder/troubleshooting/error-messages.md", "documentation/cellfinder/troubleshooting/index.md", "documentation/cellfinder/troubleshooting/speed-up.md", "documentation/cellfinder/user-guide/cellfinder-core.md", "documentation/cellfinder/user-guide/cellfinder-download.md", "documentation/cellfinder/user-guide/napari-plugin/all-cell-detection-parameters.md", "documentation/cellfinder/user-guide/napari-plugin/cell-detection.md", "documentation/cellfinder/user-guide/napari-plugin/index.md", "documentation/cellfinder/user-guide/napari-plugin/training-data-generation.md", "documentation/cellfinder/user-guide/napari-plugin/training-the-network.md", "documentation/cellfinder/user-guide/training/index.md", "documentation/cellfinder/user-guide/training/using-supplied-data.md", "documentation/index.md", "documentation/morphapi/index.md", "documentation/morphapi/usage/downloading-data.md", "documentation/morphapi/usage/rendering-data.md", "documentation/setting-up/conda.md", "documentation/setting-up/gpu.md", "documentation/setting-up/image-definition.md", "documentation/setting-up/index.md", "funders.md", "index.md", "media.md", "people.md", "publications.md", "talks.md", "tutorials/brainmapper/exploring-the-numerical-results.md", "tutorials/brainmapper/index.md", "tutorials/brainmapper/running-brainmapper.md", "tutorials/brainmapper/setting-up.md", "tutorials/brainmapper/visualising-the-results.md", "tutorials/brainmapper/visualising-your-data-in-brainrender.md", "tutorials/cellfinder-detection.md", "tutorials/cellfinder-retraining.md", "tutorials/index.md", "tutorials/manage-atlases-in-GUI.md", "tutorials/segmenting-1d-tracks.md", "tutorials/segmenting-3d-structures.md", "tutorials/silicon-probe-tracking.md", "tutorials/template-builder-pre-align.md", "tutorials/tracing-tracking.md", "tutorials/transform-cells-atlas.md", "tutorials/tutorial-whole-brain-registration.md", "tutorials/visualise-atlas-napari.md"], "indexentries": {}, "objects": {}, "objnames": {}, "objtypes": {}, "terms": {"": [0, 2, 4, 7, 10, 11, 14, 24, 25, 27, 28, 31, 35, 37, 39, 40, 42, 45, 46, 51, 52, 56, 59, 62, 64, 65, 66, 69, 70, 73, 74, 78, 79, 80, 82, 83, 84, 86, 87, 89, 92, 93, 95, 97, 99, 103, 104, 105, 113, 116, 117, 118, 121, 122, 124, 125, 126, 127, 128, 129, 131, 132], "0": [4, 6, 10, 11, 12, 13, 15, 17, 22, 23, 25, 27, 30, 33, 37, 38, 39, 45, 49, 50, 51, 55, 59, 60, 65, 73, 76, 82, 86, 88, 89, 91, 92, 94, 98, 99, 100, 101, 103, 107, 114, 115, 116, 120, 128], "00": [21, 73, 89, 117, 121], "000": [92, 99, 100], "00000000": 89, "0001": 92, "0002": 100, "01": [11, 113], "02": 11, "021": [52, 65, 69, 113], "02668": [46, 52, 56, 65, 69, 113], "03": [11, 100, 113], "04": [89, 113], "04676": [52, 65, 69, 113], "05": [11, 89, 113], "06": [11, 113], "07": [11, 113, 117], "08": 11, "09": [11, 113], "1": [2, 3, 4, 8, 10, 11, 12, 15, 25, 27, 30, 33, 42, 45, 46, 49, 50, 51, 55, 57, 59, 60, 61, 65, 68, 69, 74, 76, 82, 88, 89, 92, 94, 98, 99, 100, 101, 113, 115, 116, 127, 128, 129], "10": [5, 11, 12, 21, 23, 42, 43, 46, 47, 51, 52, 56, 60, 65, 69, 76, 78, 87, 89, 92, 94, 100, 101, 102, 103, 113, 117, 130], "100": [32, 46, 92, 94, 98, 99, 100, 113, 119], "1000": [51, 94, 99], "100000": [60, 92, 94], "1008": 113, "1009074": [65, 87, 113], "100mb": [86, 128], "100mm": [127, 129], "100\u03bcm": [47, 92], "101": [98, 99], "1016": 113, "102": 113, "1036": [59, 115], "10375287": 51, "1038": [52, 65, 69, 113], "107617": 113, "109591": 113, "10am": 20, "10\u03bcm": [3, 47, 63, 70, 118, 127], "11": [9, 11, 101, 106, 113, 126], "110": 113, "1100": 94, "111": 113, "1116": [59, 115], "112": 113, "1121": 59, "1122": 59, "1128": 59, "113862": 113, "1154": 59, "1169": 59, "119": 113, "12": [11, 23, 52, 65, 69, 91, 101, 105, 113], "120": 59, "1208": 59, "122": 59, "12405": 113, "127": [59, 115], "127579949117": [59, 115], "128": [61, 76, 91], "1284107": 113, "12um": 128, "13": [89, 113], "132": 92, "132485": [59, 115], "1335": 100, "1371": [65, 87, 113], "13882": 113, "14": [11, 21, 113, 117], "141": [43, 89], "15": [19, 46, 60, 73, 92, 94, 113], "1500": 117, "150707702232": [59, 115], "152": [98, 99], "1541": [6, 59, 115], "1550": 117, "1576": 113, "1577": 113, "159": 113, "16": [11, 46, 47, 51, 60, 92, 94, 98, 99, 100, 113], "16049mb": 91, "162": 113, "163": [6, 59, 115], "1634": 59, "166": 113, "1661": 59, "1674": 59, "168": 113, "16\u03bcm": 47, "17": [21, 65, 87, 89, 100, 113], "1750\u03bcm": 127, "177": 113, "18": [11, 21, 98, 99, 113], "182": 113, "183": 59, "185": 113, "1853": [6, 59, 115], "186": 113, "187": 59, "1889": 113, "1891": 59, "1900": 113, "190767": [59, 115], "194": [6, 59, 115], "1945": [59, 115], "1959": 113, "1977": 113, "1979": 129, "1d": [19, 53, 54, 123, 127], "1\u03bcm": 47, "2": [2, 4, 6, 8, 10, 12, 25, 27, 30, 45, 46, 49, 51, 53, 54, 55, 59, 60, 62, 72, 76, 86, 89, 92, 94, 98, 99, 100, 105, 107, 113, 115, 117, 121, 122, 123, 127, 128, 129, 130], "20": [5, 46, 47, 59, 61, 92, 113, 117, 130], "200": 59, "2000": 51, "2015": [61, 89, 98, 99], "2016": 69, "2017": 89, "2019": [47, 89, 102], "2020": [46, 47, 52, 56, 65, 69, 113, 114, 117], "2021": [2, 11, 47, 51, 65, 78, 87, 111, 113, 114], "2022": [52, 65, 69, 113], "2023": [8, 11, 18, 41, 42, 47, 113, 114], "2024": [3, 11, 12, 18, 41, 47, 51, 56, 113], "2050084x": 51, "207203665153": [59, 115], "20\u03bcm": [47, 127], "21": [11, 113], "21105": [46, 52, 56, 65, 69, 113], "212": 113, "2158": 59, "2194": 59, "22": 117, "222": 113, "23": [23, 113], "230": 73, "23408mib": 89, "24": [11, 22, 113], "24187mib": 89, "2441": 59, "245": [6, 59, 115], "247": 43, "25": [5, 46], "250": 116, "251": 113, "2528": 59, "255": 45, "256391": [59, 115], "2577": [59, 115], "258": 113, "25\u03bcm": [3, 47, 72], "26": 113, "2663": 100, "2667": [59, 115], "2668": [46, 52, 65, 69, 113], "2763": 59, "28": 113, "2800": 118, "280w": 89, "2810": 59, "282": [59, 115], "29": [22, 73], "2d": [0, 19, 34, 42, 43, 51, 57, 63, 67, 73, 86, 89, 92, 94, 95, 113, 126, 128, 132], "2p": 47, "2x2": 107, "2\u03bcm": [47, 118], "3": [4, 5, 6, 11, 14, 23, 27, 39, 43, 45, 46, 50, 51, 55, 56, 59, 76, 80, 100, 101, 102, 105, 106, 113, 114, 115, 117, 122, 125, 126, 128], "30": [11, 12, 19, 21, 49, 100, 131], "3000": 49, "3062": 113, "3078": 113, "308": 92, "3081": 113, "30gb": 117, "31": 11, "313": 59, "3150": 59, "3193": 113, "32": 105, "320": 85, "3208": 113, "32gb": [91, 117], "33": [3, 11, 47, 100], "334": 89, "3361": 113, "3363": 59, "3370": 113, "33739286": 51, "3394": 113, "34": [98, 99, 113], "3405": 113, "3417": 113, "346": 113, "348": 59, "35": 113, "352": 113, "3605": 113, "363": 59, "3630": 113, "365181": [59, 115], "37": 113, "370": 113, "374": 113, "377": 113, "37793": 89, "38c": 89, "39": 46, "394": 113, "397422": [59, 115], "39\u03bcm": 47, "3d": [0, 19, 34, 42, 43, 45, 46, 51, 53, 54, 65, 68, 75, 78, 80, 82, 84, 86, 87, 95, 97, 102, 104, 113, 120, 122, 123, 125, 127, 128, 129, 130, 131, 132], "3ng7n33r": 112, "3x3": 128, "4": [4, 10, 27, 43, 46, 51, 55, 60, 76, 89, 91, 92, 94, 99, 100, 113, 127, 129], "40": [9, 46, 49, 131], "4000": 49, "403": 113, "407": 113, "4080": 91, "40\u03bcm": 47, "41": [89, 113], "412": [6, 59, 115], "418": 89, "42": [22, 100, 113, 117], "421": [59, 115], "422": 113, "424": 113, "43": 113, "435693645163": [59, 115], "437": 59, "439": [59, 115], "44": 113, "444": 59, "44971595174": [59, 115], "45": [19, 113, 120], "450": 106, "456": 85, "457": 113, "46": 43, "460": 59, "460668": [59, 115], "461": 113, "468": 113, "47": 100, "477": 113, "48": 113, "480": 113, "481": 113, "492384": [59, 115], "494": 113, "497": [59, 115], "4983": 113, "4d": 113, "4iar": 112, "4\u03bcm": 47, "5": [4, 5, 6, 10, 19, 25, 46, 47, 51, 52, 55, 56, 59, 61, 62, 65, 69, 72, 76, 87, 92, 99, 100, 103, 106, 107, 113, 115, 117, 121], "50": [5, 46, 49, 61, 92, 98, 99, 100, 131], "500": [46, 103], "5000": [49, 51, 99], "500\u03bcm": 47, "5040": 113, "5058": 113, "50gb": 70, "50\u03bcm": 47, "528": 85, "5281": 51, "53": [89, 113], "531": 113, "532": 113, "534717": [59, 115], "535": 113, "54": [46, 52, 65, 69, 113], "543": 113, "547": 113, "550306": 89, "558": 113, "55w": 89, "56": 89, "560": 113, "56008346531": [59, 115], "561": [6, 59, 115], "565467": 89, "568": 113, "573": 113, "57638": [59, 115], "579125235589": [59, 115], "586": 59, "594": 113, "597768": [59, 115], "598": 113, "5pm": 20, "5\u03bcm": [118, 127], "6": [25, 43, 46, 51, 60, 76, 92, 94, 113, 120, 126, 128], "60": 131, "60000": 64, "601": 113, "6050": 100, "607": 113, "609": 113, "61": 113, "611487": [59, 115], "613": 113, "614387": [59, 115], "6173": 100, "637": 113, "639": 113, "64": [9, 61, 92, 105], "643": [59, 115], "644904": [59, 115], "65751": [51, 78, 113], "663": 59, "679": 59, "6814116984": [59, 115], "686": [6, 59, 115], "690": 59, "6th": 18, "7": [25, 69, 105, 113, 128], "71": 43, "722443": 113, "723": 59, "733": 59, "738": 113, "75": 46, "752um": [46, 47], "752\u03bcm": 47, "755": 113, "7554": [51, 78, 113], "76": 91, "762603": [59, 115], "764": 113, "765": 113, "773": 113, "7863": 113, "787601": 113, "7879": 113, "79": 33, "7927": 113, "7942": 113, "79954196884": [59, 115], "7th": 18, "8": [5, 39, 46, 91, 106, 113, 120], "8000": 51, "81": 113, "814": [6, 59, 115], "82": [6, 59, 113, 115], "837": 103, "84": 43, "842": [59, 115], "847336": 113, "849": [59, 115], "85": 43, "86": [113, 117], "866884": 113, "867": [52, 65, 69, 113], "876": 113, "880696": 113, "887": 113, "8gb": [91, 106], "8th": 18, "9": [39, 52, 65, 69, 91, 113, 128, 129], "90": [19, 42, 128], "917": [59, 115], "918987": [59, 115], "92320766585": [59, 115], "93": 113, "95": 76, "952479": [59, 115], "953052": [59, 115], "9579": 100, "966508": [59, 115], "97": 113, "99": 113, "997": 49, "A": [0, 2, 5, 6, 8, 11, 12, 15, 16, 17, 25, 27, 29, 30, 32, 42, 45, 46, 49, 50, 51, 52, 53, 55, 65, 67, 69, 73, 75, 78, 86, 87, 89, 91, 95, 104, 106, 113, 119, 125, 126, 127, 128, 129, 130, 131, 132], "And": 15, "As": [1, 11, 15, 16, 24, 25, 27, 28, 30, 39, 54, 65, 66, 83, 89, 90, 91, 97, 107, 120, 125, 126], "At": [28, 45, 53, 86, 131], "Be": [5, 14, 63], "By": [0, 14, 15, 24, 45, 50, 56, 72, 86, 93, 95, 104, 129], "For": [0, 5, 9, 14, 15, 17, 22, 23, 25, 27, 28, 33, 39, 45, 47, 49, 51, 53, 54, 56, 57, 58, 63, 64, 71, 73, 74, 80, 86, 90, 92, 93, 107, 118, 119, 121, 122, 125, 126, 131], "If": [1, 2, 3, 4, 5, 7, 8, 10, 12, 13, 14, 15, 17, 20, 21, 23, 25, 37, 38, 39, 40, 44, 45, 46, 47, 49, 51, 52, 53, 54, 56, 59, 61, 62, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 76, 77, 78, 79, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 95, 97, 98, 99, 100, 101, 103, 105, 107, 112, 116, 117, 119, 121, 122, 125, 126, 127, 128, 132], "In": [0, 2, 5, 7, 10, 11, 13, 20, 21, 22, 23, 24, 25, 26, 27, 33, 38, 39, 44, 45, 47, 49, 50, 51, 53, 56, 74, 78, 79, 80, 84, 89, 90, 91, 98, 99, 107, 112, 115, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "Into": 119, "It": [0, 6, 7, 10, 11, 13, 14, 15, 16, 17, 23, 24, 25, 27, 28, 33, 34, 39, 40, 42, 43, 47, 53, 57, 59, 65, 68, 80, 82, 89, 95, 99, 101, 102, 103, 115, 116, 118, 124, 127, 128, 129], "NOT": 25, "No": [14, 129], "Not": 86, "On": [5, 79, 89, 105, 121, 125, 126], "One": [6, 11, 16, 23, 25, 104, 113], "Or": [23, 49, 57], "Such": 12, "That": [51, 86], "The": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 13, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 30, 33, 34, 37, 38, 39, 40, 42, 43, 45, 46, 47, 49, 50, 51, 54, 56, 57, 58, 59, 60, 61, 62, 63, 64, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 78, 82, 85, 86, 87, 88, 90, 92, 93, 94, 95, 96, 98, 99, 100, 103, 104, 105, 106, 107, 109, 110, 112, 113, 116, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "Then": [25, 28, 79, 91, 95, 103, 124, 128, 130, 131, 132], "There": [10, 16, 23, 40, 42, 47, 49, 53, 54, 57, 62, 70, 71, 73, 95, 99, 119], "These": [3, 11, 24, 25, 27, 29, 33, 41, 45, 47, 56, 59, 63, 66, 73, 84, 90, 91, 92, 99, 106, 107, 115, 119, 123, 131, 132], "To": [0, 3, 6, 12, 16, 27, 28, 30, 31, 32, 33, 38, 45, 48, 49, 51, 53, 55, 59, 60, 61, 62, 64, 66, 67, 69, 70, 72, 73, 74, 76, 77, 78, 79, 82, 83, 85, 86, 88, 89, 93, 94, 95, 96, 97, 98, 99, 100, 101, 102, 103, 115, 117, 118, 119, 120, 125, 127, 128, 129], "Will": [11, 56, 112], "With": [0, 13, 27, 39, 79, 118, 127], "_": [28, 103], "__can": 82, "__file__": 86, "__init__": 28, "__main__": 45, "__name__": 45, "__version__": 45, "_cudadeviceproperti": 91, "_prepare_authors_field": 28, "a0": [46, 47], "aart": 113, "abba": 34, "abdu": [11, 112], "abisi": 112, "abl": [24, 27, 38, 53, 70, 73, 100, 127], "ablot": 112, "about": [15, 16, 17, 23, 24, 26, 27, 28, 40, 44, 45, 55, 56, 66, 68, 69, 84, 85, 86, 88, 101, 103, 110, 113, 114, 116, 117, 121, 122, 125, 126, 132], "abov": [25, 27, 28, 38, 39, 40, 45, 49, 51, 54, 60, 66, 85, 89, 94, 101, 107, 119, 130], "absenc": 113, "absolut": [23, 128], "absorb": [10, 11], "abstract": [27, 28, 56], "ac": 113, "academ": 56, "academi": 113, "acceler": [0, 106], "accept": [24, 51, 84], "access": [2, 12, 17, 24, 38, 40, 43, 49, 82, 83, 84, 97, 116], "accommod": 28, "accompani": 45, "accord": [51, 129], "accordingli": [25, 37], "accur": [52, 65, 69, 100, 113, 129], "accuraci": [9, 100, 113], "achiev": [24, 32], "ackel": 113, "ackground": 117, "acknowledg": 56, "acquir": [63, 100, 118, 129], "acquisit": 63, "acronym": [45, 49, 51], "across": [0, 2, 6, 11, 12, 13, 24, 27, 28, 30, 37, 66, 86, 113, 126, 127, 128], "action": [15, 25, 28, 32, 86, 113], "activ": [3, 8, 9, 23, 39, 56, 67, 70, 88, 91, 100, 101, 106, 112, 113, 118, 125, 126, 127, 129, 130], "actor": [78, 81, 83, 84, 86, 104, 120], "actual": [27, 45, 72, 83, 89], "acut": 113, "ad": [0, 1, 11, 17, 24, 25, 27, 33, 39, 42, 46, 81, 86, 132], "adam": [11, 20, 21, 23, 51, 56, 64, 112, 114], "adamltyson": 112, "adapt": [0, 8, 11, 113, 127], "adc": [46, 47], "add": [23, 26, 28, 33, 43, 53, 54, 76, 78, 80, 82, 84, 86, 97, 101, 120, 122, 125, 126, 128, 130, 132], "add_additional_refer": 45, "add_brain_region": [82, 83, 86, 120], "add_label": 82, "add_silhouett": 82, "add_structure_to_view": 45, "add_to_view": 45, "addit": [0, 14, 17, 22, 23, 26, 28, 32, 33, 39, 45, 47, 49, 55, 69, 75, 77, 78, 79, 82, 85, 89, 95, 118, 119, 125, 129, 132], "addition": [0, 24, 54], "additional_depend": 33, "address": [0, 15, 16, 85], "adher": [22, 23], "adjac": 30, "adjust": [9, 54, 61, 90, 119, 121, 125, 126, 130, 131], "adkin": 113, "admba_3d_e11_5_mouse_16um": [46, 47], "admba_3d_e13_5_mouse_16um": [46, 47], "admba_3d_e15_5_mouse_16um": [46, 47], "admba_3d_e18_5_mouse_16um": [46, 47], "admba_3d_p14_mouse_16": [46, 47], "admba_3d_p28_mouse_16": [46, 47], "admba_3d_p4_mouse_16": [46, 47], "admba_3d_p56_mouse_25um": [46, 47], "admin": [25, 105, 106], "administ": 91, "adolf": 113, "adopt": [12, 26, 27], "adrien": 112, "adult": [3, 11, 34, 43, 46, 83, 113], "advanc": [3, 5, 11, 20, 21, 65, 70, 78, 87, 88, 113], "advantag": [11, 16, 24], "advertis": [26, 34], "advic": [11, 14, 91], "affect": [4, 10, 13, 16, 25, 27, 51, 105, 125], "affin": [55, 69], "aforement": 16, "after": [6, 19, 25, 29, 33, 37, 45, 59, 60, 64, 66, 83, 98, 99, 113, 127, 128, 130, 131], "ag": 46, "again": [1, 15, 25, 28, 39, 62, 74, 105, 119, 128], "against": [14, 25, 71], "agba": 113, "agenda": 23, "agnost": 8, "ahead": 73, "ai": [51, 113], "aim": [0, 2, 12, 19, 23, 24, 32, 43, 69, 84, 87, 110, 118, 121, 122, 127, 130], "airspe": 29, "aksel": 113, "aksoi": 113, "al": [2, 3, 8, 11, 12, 46, 61, 98, 99, 102, 113], "ala": 113, "alastruei": 113, "aldridg": 113, "alessandro": [11, 20, 21, 51, 112], "alessandrofeld": 112, "alexi": 112, "algorithm": [0, 45, 56, 64, 65, 72, 87, 96, 113, 129], "ali": 113, "alias": 28, "align": [6, 11, 69, 74, 113, 123, 131], "all": [0, 1, 3, 4, 5, 7, 8, 10, 11, 16, 17, 23, 24, 25, 27, 28, 29, 32, 33, 36, 37, 40, 42, 43, 44, 45, 49, 51, 53, 56, 57, 61, 62, 68, 72, 73, 74, 75, 80, 82, 83, 84, 85, 86, 91, 95, 98, 99, 101, 103, 112, 113, 117, 118, 125, 126, 130, 131, 132], "all_citable_repositori": 28, "all_point": [66, 130], "allen": [0, 3, 11, 43, 46, 52, 65, 69, 72, 83, 102, 113, 118], "allen_cord_20um": [46, 47, 51], "allen_human_500um": [46, 47], "allen_mouse_100um": [46, 47, 49], "allen_mouse_10um": [46, 47, 77, 117, 119], "allen_mouse_10um_v0": 50, "allen_mouse_10um_v1": 45, "allen_mouse_25um": [46, 47, 48, 77, 117], "allen_mouse_50um": [47, 72, 83, 131], "allen_mouse_bluebrain_barrels_10um": [3, 46, 47], "allen_mouse_bluebrain_barrels_25um": [3, 46, 47], "allenmorphologi": 103, "allensdk": 79, "allow": [3, 6, 7, 8, 9, 11, 13, 16, 17, 23, 25, 27, 28, 29, 34, 39, 42, 44, 45, 46, 47, 51, 52, 59, 67, 69, 72, 76, 77, 86, 87, 92, 105, 115, 127, 128, 129], "almost": [11, 15, 84], "along": [51, 66, 73, 74, 76, 82, 84, 113, 119, 125, 127, 128, 129], "alongsid": [6, 20, 21, 42, 43, 122], "alpha": [86, 120], "alphabet": 72, "alreadi": [10, 28, 56, 62, 70, 82, 84, 85, 88, 99, 101, 105], "also": [0, 1, 4, 6, 7, 9, 10, 11, 14, 15, 16, 17, 22, 24, 25, 27, 28, 33, 38, 39, 40, 44, 45, 47, 48, 51, 52, 53, 55, 56, 57, 58, 62, 64, 66, 68, 69, 70, 72, 73, 75, 77, 78, 80, 82, 84, 86, 93, 101, 107, 116, 118, 119, 122, 127, 129, 130], "alsubai": 113, "altern": [0, 25, 28, 37, 38, 39, 40, 47, 52, 89, 129], "although": [23, 42, 48, 50, 63, 85, 116], "alwai": [7, 23, 25, 27, 44, 55, 82, 91, 101, 116], "am": [103, 117], "amap": 69, "ambystoma": [11, 47], "amedyukhina": 112, "amend": 93, "ament": 113, "ami": 113, "amongst": [2, 11, 28], "amount": [14, 30, 62, 91, 98, 99], "amphibian": [2, 11, 46], "amsalem": 112, "amygdala": 113, "amygdalar": 113, "an": [0, 1, 5, 9, 11, 13, 16, 19, 22, 24, 25, 26, 27, 28, 32, 33, 34, 39, 40, 41, 42, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 59, 61, 64, 65, 69, 70, 73, 74, 75, 80, 82, 83, 85, 86, 88, 89, 92, 97, 98, 99, 101, 106, 107, 113, 115, 116, 117, 118, 123, 125, 126, 128, 130], "anaconda": [91, 105], "anaesthetis": [127, 129], "analys": [6, 11, 14, 19, 28, 42, 43, 52, 54, 59, 62, 63, 65, 66, 73, 94, 95, 116, 117, 123, 125, 126, 129], "analysi": [0, 6, 7, 11, 14, 15, 16, 17, 18, 24, 29, 34, 39, 40, 43, 47, 52, 53, 65, 68, 85, 91, 97, 99, 101, 110, 113, 115, 118, 119, 123, 125, 126, 127, 129, 131], "analyz": 123, "anatom": [0, 8, 11, 43, 45, 50, 51, 53, 55, 78, 85, 113, 128, 129], "anatomi": [11, 12, 45, 113], "anatomicalspac": 85, "andrad": 113, "andrea": [12, 112], "angular": 113, "ani": [0, 4, 10, 11, 13, 14, 15, 17, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 33, 34, 38, 39, 40, 41, 43, 44, 45, 47, 51, 54, 55, 59, 62, 64, 69, 70, 72, 73, 78, 80, 82, 84, 85, 90, 95, 105, 106, 112, 119, 128, 130, 132], "anim": [3, 11, 46, 78, 81, 82, 113, 127, 129], "anisotropi": 47, "anna": 112, "annex": 45, "annoi": [55, 91], "annot": [2, 8, 11, 12, 25, 34, 45, 46, 47, 50, 55, 69, 73, 75, 99, 100, 113, 119, 125, 132], "announc": [9, 11, 16, 17], "annual": 113, "anoth": [6, 16, 17, 44, 53, 55, 62, 72, 89, 105], "answer": [23, 44], "anterior": [6, 45, 55, 59, 74, 85, 107, 115, 128], "anterograd": 129, "antonin": 112, "antonio": 113, "anybodi": 73, "anyon": [24, 105], "anyth": [13, 14, 24, 37, 44, 62, 70, 80, 82, 83, 84, 105], "anywai": [10, 16, 105], "anywher": 117, "ap": [51, 112], "api": [0, 1, 11, 12, 13, 15, 16, 24, 26, 34, 38, 40, 42, 43, 45, 47, 50, 51, 52, 56, 65, 68, 69, 70, 78, 82, 85, 87, 88, 99, 101, 102, 103, 104, 110, 113], "apont": 113, "appar": 47, "appear": [5, 27, 43, 54, 63, 73, 86, 121, 122, 124, 125, 126, 128, 130, 131, 132], "append": 28, "appetit": 113, "appli": [30, 55, 69, 73], "applic": [3, 5, 6, 7, 42, 46, 49, 53, 63, 89, 99, 131], "approach": [0, 113], "appropri": [24, 25, 28, 47, 56, 59, 62, 65, 70, 106, 129], "approv": [23, 25], "approx": 116, "approxim": [9, 90, 99, 100, 128], "aquino": 113, "ar": [0, 1, 4, 5, 9, 10, 11, 14, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 37, 39, 40, 41, 42, 43, 44, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 60, 62, 63, 64, 66, 68, 69, 70, 71, 72, 73, 74, 75, 76, 80, 82, 84, 85, 86, 89, 90, 92, 93, 95, 96, 97, 98, 99, 101, 104, 105, 106, 107, 113, 117, 118, 119, 121, 123, 124, 125, 127, 128, 129, 130, 131, 132], "arber": 113, "arbitrari": 43, "arbor": 59, "architectur": 113, "archiv": [4, 26, 40, 45, 100], "area": [3, 6, 11, 17, 28, 30, 50, 59, 62, 65, 66, 75, 91, 99, 105, 113, 115, 125, 126, 127, 128, 129], "aren": 23, "arginin": 113, "arginl": 113, "argument": [28, 45, 51, 56, 69, 86, 117], "argun\u015fah": 113, "aria": 113, "arm64": 23, "armand": 113, "arnaudon": 112, "aroca": 113, "around": [7, 24, 42, 43, 54, 82, 84, 86, 87, 94, 128], "arrai": [30, 45, 55, 57, 80, 84, 92, 125], "arrang": 128, "arrow": [27, 54, 122], "arshadi": 113, "artefact": [90, 95, 96, 99, 118, 119, 121], "articl": [28, 51, 56], "artifact": [60, 62], "as_acronym": 49, "ascher": 113, "ascoli": 113, "ask": [23, 24, 28, 44, 49, 56, 66, 73, 91], "asl": [55, 62, 107], "aspect": 85, "aspir": 24, "asr": [74, 107, 128], "asr_align": 128, "asr_label": 128, "asri": 113, "assakura": 113, "assembl": 28, "assess": [99, 100, 119], "assign": [6, 43, 51, 59], "assist": [20, 21, 45, 113], "associ": 45, "assum": [23, 30, 67, 85, 107], "assumpt": 24, "astyanax": [8, 11, 47], "asv": 29, "asymmetr": [50, 74], "atac": 113, "athei": 113, "atla": [0, 1, 5, 6, 7, 11, 13, 19, 24, 34, 37, 42, 43, 48, 50, 51, 52, 53, 54, 56, 59, 65, 66, 69, 71, 73, 74, 75, 77, 78, 80, 82, 83, 101, 102, 103, 110, 113, 116, 117, 118, 119, 120, 123, 125, 126, 130], "atlas": [0, 1, 5, 24, 42, 43, 48, 49, 50, 52, 56, 65, 69, 70, 72, 83, 84, 85, 113, 128, 131, 132], "atlas_gener": [1, 45], "atlas_link": 45, "atlas_nam": [45, 51, 77, 82, 83], "atlas_packag": 45, "atlas_script": 45, "atlas_spac": [125, 127], "atlasapi": [0, 4, 11, 12, 17, 24, 31, 42, 43, 45, 56, 69, 101], "atlasgen": [11, 42, 43, 45], "atlasname_resolutionum": 45, "attach": 127, "attempt": [25, 39, 56, 60, 62, 94], "attent": 113, "attribut": 49, "aud": 51, "audiologi": 113, "auditori": 113, "augment": [98, 99], "author": [8, 27, 28, 46, 51, 56], "autism": 113, "autocontrast": [125, 126], "autofluoresc": [63, 71, 95, 117, 118, 127, 129], "autofluroesc": [73, 118], "autom": [6, 34, 42, 43, 47, 52, 53, 87, 113, 125, 126], "automat": [4, 5, 11, 17, 25, 27, 28, 30, 33, 37, 38, 45, 99, 104, 113, 120, 128, 129, 130], "autophagi": 113, "avail": [0, 1, 2, 3, 8, 10, 14, 15, 17, 25, 28, 38, 40, 42, 45, 48, 49, 53, 56, 71, 72, 89, 91, 92, 100, 102, 103, 105, 114, 118, 129], "averag": [50, 74, 128], "avers": 113, "avoid": [8, 15, 24, 25, 28, 32, 40, 127, 128, 129], "avx": 89, "avx2": 89, "awai": [16, 27], "awak": 113, "awar": [5, 13, 14, 28, 46, 56, 116], "awesom": 84, "ax": [51, 55, 84, 85, 123, 128], "axel": [3, 11, 112], "axi": [74, 107, 113, 128], "axial": [63, 73], "axis_label": 55, "axolotl": [11, 46], "axon": [53, 104, 113], "azba": 46, "azba_zfish_4um": [46, 47], "b": [17, 25, 27, 54, 62, 75, 77, 105, 113, 117], "back": [23, 25, 42, 45, 56, 92, 97, 126, 128, 132], "backend": [7, 11, 14, 15, 16, 17, 28, 29, 39, 40, 42, 43, 69, 76, 83], "background": [26, 62, 63, 67, 86, 92, 94, 95, 97, 121, 122, 127, 129], "background_arrai": 92, "background_channel_imag": 62, "background_imag": 92, "background_image_directori": 92, "backslash": 100, "bahl": 113, "bakken": 113, "balanc": 113, "ball": [60, 94], "ball_filt": 30, "ball_overlap_fract": 92, "ball_xy_s": 92, "ball_z_siz": [30, 92], "band": 113, "bandrowski": 113, "bank": 113, "bao": 113, "bar": [25, 54, 121, 122, 124, 125, 126, 128, 130, 131, 132], "barrel": [11, 46], "barri": 113, "barrier": 0, "bartal": 113, "base": [0, 11, 16, 27, 28, 45, 47, 54, 56, 61, 65, 69, 73, 74, 75, 85, 92, 97, 98, 99, 105, 106, 107, 110, 113, 125, 129], "basi": [47, 56], "basic": [25, 34, 69, 78, 86, 106], "batch": [9, 30, 61, 91, 98, 99], "batch_siz": 92, "batsel": 113, "batti": 113, "baum": 113, "beauti": [0, 51, 86], "becaus": [10, 11, 23, 25, 30, 45, 64, 71, 83, 86, 89, 96, 128, 131], "becom": [15, 25, 39, 99, 129], "been": [1, 5, 6, 9, 11, 13, 16, 17, 24, 25, 26, 27, 30, 32, 33, 37, 38, 39, 40, 42, 45, 53, 54, 56, 62, 65, 106, 116, 119, 127, 129, 130], "beest": 113, "befor": [14, 16, 23, 25, 28, 33, 38, 39, 40, 45, 59, 64, 65, 70, 71, 72, 79, 80, 83, 84, 86, 91, 95, 97, 106, 116, 122, 128, 130, 132], "begin": [11, 13, 25, 30, 38, 77], "behav": 113, "behavior": [11, 12, 113, 129], "behaviour": [10, 104, 113], "behind": [14, 17, 80, 82, 99], "being": [0, 11, 15, 17, 27, 28, 30, 33, 40, 45, 76, 82, 86, 89, 90, 96, 121, 128], "belong": 45, "below": [2, 5, 8, 9, 11, 12, 17, 24, 27, 31, 39, 40, 45, 47, 52, 54, 59, 68, 74, 82, 91, 101, 103, 128, 132], "ben": [112, 113], "benchmark": [14, 17, 24, 29, 40, 42, 43], "bend": 76, "bendicht": 112, "benefici": 128, "benefit": [27, 44], "bennett": 113, "berchet": 112, "bernstein": 113, "bertha": 113, "best": [9, 23, 33, 44, 47, 99, 118, 128], "beta": 113, "better": [2, 11, 16, 47, 90, 98, 99, 116], "between": [9, 10, 13, 15, 16, 39, 51, 55, 73, 76, 86, 91, 94, 98, 99, 100, 105, 106, 113, 128, 129], "beyer": 113, "beyond": [4, 16, 27, 37, 40], "beyreuth": 113, "bg": [11, 17, 24, 25, 28, 42, 43, 55, 56], "bg_atla": 49, "bgh": 51, "bgheatmap": 42, "bgi": 0, "bgspace": 85, "bhatia": 113, "bi": 23, "biapi": [59, 123], "bias": 128, "bibliographi": 56, "bibtex": [28, 51, 56], "bibtex_fmt": 28, "bibtexentri": 28, "biccn": 113, "bigger": 91, "bimbard": 113, "bin": [76, 89], "binari": [73, 89], "bing": 113, "biolog": [23, 113], "biologi": [65, 87, 90, 99, 113], "biomed": [53, 113], "biophys": 113, "biorxiv": 113, "birman": 113, "bisi": [3, 11, 112], "bistabl": 113, "bit": [89, 105, 119, 128], "bjaali": 113, "bjerk": 113, "bkntr": 112, "blacher": 112, "black": [33, 82], "blackmor": 113, "blanch": 113, "blind": [11, 46], "blixhavn": 113, "blob": 53, "blog": [16, 17, 26, 39, 42, 111, 116], "blogpost": 47, "blood": [119, 127, 129], "blot": 112, "blue": [2, 8, 63, 67, 119, 128], "bluebrain": [46, 102], "blueski": 26, "board": 24, "bodenstein": 113, "bogdanowicz": 113, "bola\u00f1o": [3, 11, 47], "bold": 84, "bolkan": 113, "bollmann": 113, "bolota": 112, "bonapersona": 113, "bond": [11, 12], "bonn": 113, "bonnin": 113, "boorboor": 113, "bormann": 113, "bosch": 113, "bot": 25, "both": [0, 6, 7, 27, 28, 30, 32, 38, 39, 40, 42, 43, 44, 66, 82, 97, 105, 127], "bottom": [27, 45, 54, 74, 94, 95, 113, 126, 128, 130], "boucsein": 113, "boundari": [73, 75, 77, 119, 131], "bourdenx": [51, 112], "bowler": 113, "box": [25, 27, 94, 97, 98, 122, 126], "br_class": 82, "bracei": 113, "brain": [0, 2, 5, 6, 8, 11, 12, 13, 15, 16, 18, 20, 21, 24, 30, 42, 43, 45, 46, 49, 50, 51, 52, 54, 59, 62, 63, 65, 66, 68, 69, 72, 73, 74, 75, 77, 78, 82, 83, 84, 85, 86, 87, 88, 91, 92, 99, 102, 103, 107, 113, 115, 117, 118, 119, 120, 123, 124, 125, 126, 128, 130, 132], "brain_align": 128, "brain_cell_detect": 123, "brain_geometri": 72, "brain_region": [86, 103], "brainglob": [0, 1, 4, 6, 7, 11, 15, 18, 22, 23, 25, 33, 34, 37, 41, 42, 43, 44, 47, 48, 49, 50, 53, 54, 57, 59, 65, 69, 70, 72, 73, 74, 75, 78, 79, 82, 83, 84, 85, 87, 92, 93, 106, 107, 109, 112, 116, 118, 122, 123, 124, 125, 126, 127, 128, 129, 130, 132], "brainglobe_atlasapi": [1, 45, 49], "brainglobe_heatmap": 51, "brainglobe_seg": 37, "brainglobe_segment": 37, "brainglobe_spac": 55, "brainglobe_tool": 28, "brainglobe_util": [5, 10, 28, 57, 64, 84, 92], "brainglobe_workflow": 29, "brainglobe_workflows_date_tim": 66, "brainglobeatla": [45, 46], "brainlin": 113, "brainmapp": [5, 11, 15, 17, 27, 32, 38, 40, 42, 58, 63, 64, 66, 67, 68, 90, 99, 101, 118, 119, 120, 123, 130], "brainmapper_output": 118, "brainreg": [0, 1, 2, 4, 6, 10, 11, 12, 14, 16, 17, 19, 24, 27, 28, 34, 39, 40, 42, 43, 52, 53, 54, 59, 66, 67, 70, 71, 72, 74, 75, 84, 85, 87, 88, 101, 107, 113, 118, 125, 126, 127, 129, 130, 131], "brainreg_date_tim": 75, "brainreg_napari": 37, "brainreg_output": 127, "brainrend": [0, 1, 2, 3, 4, 8, 11, 17, 19, 24, 27, 32, 34, 40, 42, 43, 45, 48, 51, 52, 54, 59, 66, 80, 81, 82, 83, 85, 86, 101, 102, 104, 110, 113, 115, 116, 124, 125, 130, 132], "brainrender_napari": 45, "brainstem": 113, "brainwai": 113, "brainwid": [6, 59, 65, 113, 116, 123], "branch": [23, 25, 28], "branco": [46, 51, 52, 56, 65, 69, 78, 112, 113], "brannigan": 113, "break": [27, 28, 33, 39], "breakag": 14, "breakdown": 68, "brianmapp": 63, "bright": 118, "brighter": [130, 131], "brightli": 63, "bring": [4, 9, 11, 14, 20, 21], "brodersen": 112, "brought": 42, "brown": [69, 113], "brows": 128, "browser": 86, "brunner": 113, "brunwass": 113, "brush": [126, 128], "bsd": 56, "bu": 89, "buck": 113, "bug": [5, 14, 17, 23, 25, 42], "bugfix": [25, 33], "build": [0, 17, 25, 27, 34, 40, 101, 106, 110, 123], "builder": [43, 128], "built": [22, 35, 49, 89], "bukalo": 113, "bulb": [2, 107, 113], "bulk": [43, 53, 123], "bump": [25, 27, 33], "bundl": [13, 14, 17, 42, 45, 52], "bunyak": 113, "burdyniuk": 113, "buschman": 113, "busi": [16, 23], "button": [53, 54, 59, 94, 95, 98, 121, 124, 125, 126, 127, 128, 130, 131, 132], "c": [5, 9, 23, 25, 42, 43, 52, 65, 68, 69, 70, 82, 87, 89, 113], "ca1": 86, "cach": [23, 31, 104], "cahoon": 113, "cai": 113, "cake": 55, "calcul": [65, 76, 126], "california": 113, "call": [1, 11, 15, 17, 27, 28, 38, 40, 42, 44, 65, 68, 82, 86, 91, 105, 116, 118, 128, 130], "came": 99, "camera": [69, 81, 86], "campagn": 113, "campbel": [112, 113], "campu": [102, 103], "can": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 19, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 38, 39, 42, 44, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 76, 77, 78, 79, 80, 82, 83, 84, 86, 87, 88, 91, 92, 93, 94, 95, 97, 98, 99, 101, 103, 104, 105, 106, 112, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "cancel": 89, "cancer": 113, "candid": [5, 30, 62, 66, 67, 95, 96, 97, 98, 99, 100, 119], "cannot": [17, 49, 61, 62, 101], "canva": [7, 97, 128], "cao": 113, "cap": 89, "capabl": [0, 106], "capit": 55, "captiv": [2, 11], "carandini": 113, "cardoso": 69, "care": [13, 14, 16, 45, 78, 84], "carefulli": [127, 129], "carei": 112, "carl": 113, "carlo": 112, "carlocastoldi": [51, 112], "carrara": 113, "carri": [4, 11, 42, 43, 44, 67], "carrier": 113, "carter": 112, "cartoon": 5, "case": [5, 15, 16, 17, 23, 24, 25, 27, 28, 33, 37, 38, 39, 47, 53, 56, 63, 68, 74, 80, 84, 85, 89, 97, 118, 127, 128, 129], "cast": 30, "casta\u00f1eda": 113, "castoldi": 112, "cat": 127, "catalys": 0, "catarino": 113, "catch": [14, 28], "cater": 24, "caus": [5, 17, 28, 71], "cave": [8, 11], "cavefish": [11, 46], "cb": 51, "cc": 89, "ccf": [46, 113], "ccfv3": 47, "cd": [100, 118], "ceas": 16, "cell": [0, 5, 6, 9, 11, 16, 19, 24, 34, 40, 42, 43, 51, 55, 58, 62, 63, 64, 65, 66, 67, 68, 78, 80, 81, 87, 88, 96, 97, 98, 99, 100, 102, 113, 115, 117, 118, 119, 120, 122, 123], "cell_candid": 92, "cell_classif": [66, 99], "cell_def": 100, "cell_detector_3d": [42, 43], "cell_typ": 103, "cellboost": 113, "cellcentroidform": 113, "cellfind": [0, 1, 6, 7, 11, 17, 19, 24, 27, 28, 31, 32, 34, 37, 40, 42, 43, 44, 54, 59, 61, 64, 67, 75, 80, 89, 90, 93, 94, 98, 99, 100, 101, 105, 106, 110, 116, 123, 130], "cellfinder_cor": [15, 38, 40], "cellfinder_download": [5, 93], "cellfinder_napari": 15, "cellfinder_run": 92, "cellfinder_train": [99, 100], "cells_path": 120, "cellular": [6, 113], "censu": 113, "center": [51, 97, 126], "centr": [0, 20, 21, 30, 60, 92, 111, 112, 127], "central": [2, 11, 24, 30, 82], "centroid": 92, "cerebellar": 113, "cerebellum": [47, 107], "cerebrospin": 113, "certain": [16, 27, 63], "cff": 28, "ch": 49, "ch00": [117, 118, 119], "ch01": [117, 118], "chain": [25, 87], "chalatsi": 113, "challeng": [0, 11, 16], "chanc": 82, "chandrashekhar": 113, "chang": [1, 4, 5, 8, 9, 10, 11, 13, 14, 15, 17, 23, 25, 27, 28, 33, 36, 39, 43, 45, 54, 55, 56, 60, 61, 64, 68, 71, 72, 74, 76, 78, 104, 105, 112, 113, 116, 119, 125, 126, 128], "changelog": [11, 16, 36, 39, 68], "channel": [26, 54, 62, 67, 72, 75, 77, 95, 97, 117, 118, 119, 121, 122, 127, 129], "charact": 28, "characterist": [11, 12], "charli": 112, "chart": 27, "chat": [23, 44], "chauhan": 113, "checcucci": 113, "check": [4, 10, 14, 17, 23, 25, 26, 28, 31, 32, 45, 56, 64, 69, 71, 73, 78, 80, 84, 85, 91, 95, 98, 107, 117, 128], "check_latest": 49, "checker": 33, "checkpoint": [98, 99], "cheeseman": 113, "chemic": 113, "chen": 113, "cheng": 113, "cheyn": 113, "chicchi": 113, "children": 45, "chili": 112, "chini": 113, "chiu": [112, 113], "choi": 113, "choic": [24, 47, 56, 104, 106, 118], "chon": 47, "choos": [12, 16, 22, 25, 45, 47, 54, 59, 70, 73, 93, 97, 98, 99, 101, 121, 122, 126, 129, 130, 131], "chosen": [23, 54, 56, 66, 73, 98, 99, 125], "chri": 112, "chrisroat": 112, "christian": 112, "chronic": 113, "chryssanthi": 112, "chrytsi": 112, "chu": 113, "chung": 113, "churchland": 113, "ci": [24, 25], "ciampi": 113, "circl": [119, 121, 126], "circuit": 113, "circuitri": 113, "circular": 10, "citabl": 56, "citat": [45, 58], "cite": [0, 46, 52, 56, 69, 78], "claar": 113, "clack": 113, "clash": 39, "class": [28, 45, 51, 58, 78, 81, 82, 84, 86, 103, 104, 119, 127], "classical_filt": 30, "classif": [5, 62, 66, 68, 88, 95, 96, 99, 100, 117, 118, 119, 123], "classifi": [90, 92, 95, 96, 97, 98, 99, 119], "classified_cel": 92, "claudi": [46, 51, 52, 56, 65, 69, 78, 112, 113], "claudi2021": 51, "claus": 56, "clean": [16, 23, 27, 29, 33, 38, 39, 40], "clear": [0, 5, 34, 47, 63, 71, 116], "clearer": 17, "clearmap": 34, "cli": [28, 40, 43, 73, 101], "click": [53, 54, 59, 73, 74, 77, 94, 95, 97, 98, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "cline": 113, "clipping_rang": 82, "clipping_valu": 30, "clone": [23, 25, 29, 79], "clopath": 113, "close": [42, 56, 61, 82, 83, 122, 125], "closest": 125, "clothier": 112, "cluster": [60, 70, 91, 94, 105, 113], "cmap": 51, "cn": [2, 11], "cniedwor": 112, "co": [7, 113], "coat": 127, "code": [1, 5, 10, 13, 14, 16, 24, 25, 27, 30, 33, 39, 40, 45, 56, 75, 78, 79, 82, 84, 113, 127], "codebas": [23, 37, 43], "codecov": 32, "coeff": 9, "coeffici": [47, 76], "cognit": 113, "col": 112, "colameo": 113, "cole": 113, "collabor": [0, 12, 99], "colleagu": 86, "collect": [1, 24, 28, 30, 43, 68], "colleg": [20, 21, 113], "collicular": 113, "colligan": 112, "colloqui": 27, "coloc": 113, "color": [45, 51, 86, 104, 120, 129], "colormap": [51, 54], "colour": [27, 119, 120, 126], "column": [3, 11, 47, 84], "com": [45, 79, 112, 128], "combin": [6, 13, 14, 17, 27, 37, 39, 43, 68, 76, 87, 88, 113], "come": [11, 13, 16, 25, 27, 43, 49, 52, 56, 57, 64, 67, 71, 74, 77, 89, 92, 93, 97, 107, 116, 119, 122], "command": [5, 6, 7, 11, 14, 15, 16, 17, 23, 24, 27, 28, 29, 38, 39, 40, 42, 43, 46, 47, 54, 56, 68, 69, 77, 83, 88, 93, 97, 99, 101, 106, 117, 118, 119, 121, 122, 123, 125, 128, 129, 132], "comment": [23, 45], "commit": [23, 25, 32], "common": [3, 6, 7, 11, 15, 27, 28, 40, 42, 43, 46, 47, 52, 53, 56, 57, 65, 68, 69, 90, 113, 129], "commonli": [47, 80, 84, 101], "commun": [0, 22, 26, 27, 41, 43, 69, 110, 112, 113], "companion": [13, 52], "compar": [0, 9, 24, 113, 115, 127], "comparison": [0, 9, 47], "compat": [5, 14, 27, 42, 45, 51, 53, 89, 120, 130], "compil": [24, 89], "complet": [1, 16, 17, 31, 47, 59, 69, 73, 89, 98, 99, 122, 130, 131], "complex": [6, 15, 16, 25, 27, 55, 59, 86, 115], "complic": [0, 16, 43, 49], "compon": 132, "compound": 129, "comprehens": 113, "compress": [45, 86], "compris": 27, "comput": [0, 3, 11, 23, 56, 65, 70, 76, 87, 88, 89, 90, 99, 105, 106, 110, 113, 116, 121, 122, 124, 125, 126, 127, 128, 129, 131, 132], "concern": [16, 31], "concret": 49, "conda": [3, 7, 8, 9, 23, 37, 42, 43, 45, 67, 68, 70, 79, 88, 91, 100, 101, 106, 108, 118, 121, 122, 125, 126, 127, 128, 129], "conduct": 23, "conf": [26, 45, 93], "confer": [113, 114], "confid": 101, "config": [33, 93], "configur": [33, 45, 91], "conflict": [38, 39, 40, 79, 101, 105], "confus": [15, 40, 42, 84], "confusingli": 17, "congruent": 113, "connect": [24, 49, 93, 113, 116, 129], "connectom": [0, 84, 113], "consequ": [13, 39], "consid": [13, 28, 39, 60, 91, 99, 113], "consider": [5, 43, 88], "consist": [17, 24, 25, 27, 30, 33, 40, 42, 43, 46, 49, 53, 78, 101], "consol": [62, 73, 89], "constantin": 113, "construct": 113, "constructor": 28, "consult": [90, 99], "contact": [0, 20, 21, 45], "contain": [2, 3, 4, 11, 13, 16, 17, 24, 25, 27, 28, 29, 30, 31, 37, 38, 45, 47, 49, 50, 57, 58, 63, 66, 75, 94, 95, 98, 118, 120, 124, 125, 127, 128, 129, 130, 132], "content": [0, 23, 28, 37, 45, 82, 86], "context": [53, 129, 130], "continu": [1, 7, 9, 11, 14, 15, 16, 22, 37, 38, 39, 98, 99], "continue_train": 92, "contrast": [54, 71, 113, 119, 125, 126, 130, 131], "contribut": [5, 24, 43, 56, 113], "contributor": [23, 24], "control": [24, 27, 54, 76, 106, 113, 122, 128, 129], "conv": 113, "convect": 85, "convei": 86, "conveni": [28, 42, 45, 49, 55, 80, 85], "convent": [14, 16, 17, 23, 24, 25, 28, 31, 42, 55, 128], "converg": 113, "convers": 40, "convert": 27, "convolut": 113, "cooper": 113, "coordin": [3, 6, 7, 11, 47, 49, 53, 54, 55, 59, 66, 67, 69, 72, 80, 81, 82, 85, 92, 95, 113, 115, 125, 127, 128, 129, 130], "coordinate_atlas_axis_0": 59, "coordinate_atlas_axis_1": 59, "coordinate_atlas_axis_2": 59, "coordinate_raw_axis_0": 59, "coordinate_raw_axis_1": 59, "coordinate_raw_axis_2": 59, "copi": [30, 56, 82, 113], "cord": [46, 113, 128], "core": [0, 5, 7, 11, 13, 14, 16, 17, 23, 24, 26, 27, 31, 34, 37, 39, 40, 42, 43, 44, 45, 62, 71, 72, 78, 89, 91, 94, 98, 110, 112, 117], "cornelison": 113, "corner": [22, 30, 54, 55, 74, 107], "cornuti": 113, "coron": [12, 87, 113, 118], "correct": [44, 45, 55, 69, 71, 90, 96, 99, 105, 106], "correctli": [16, 27, 33, 74, 97, 99], "correl": [9, 113], "correspond": [15, 16, 25, 28, 39, 45, 49, 50, 53, 68, 82, 85, 97, 128, 129], "cortex": [3, 11, 45, 46, 83, 103, 113, 119, 120], "cortic": 113, "cortico": 113, "corticocort": 113, "cort\u00e9": 113, "cossel": [52, 65, 69, 87, 112, 113], "costantini": 113, "could": [2, 8, 12, 25, 53, 64, 71, 119, 128, 130], "count": [9, 34], "counterpart": 25, "coupl": [25, 79], "cours": [19, 20, 21, 35, 114], "cover": [13, 20, 21, 24, 60, 63, 129, 131], "coverag": [32, 42], "cox": 113, "cpu": [5, 62, 72, 91, 94, 98, 117], "cpu_feature_guard": 89, "cramer": 113, "creat": [0, 2, 9, 11, 12, 16, 17, 25, 27, 28, 30, 33, 34, 38, 40, 42, 43, 45, 46, 51, 55, 56, 62, 66, 68, 73, 75, 78, 79, 80, 82, 83, 84, 86, 89, 97, 98, 99, 101, 102, 104, 120, 122, 125, 127, 128, 129, 130, 131], "create_mesh": 104, "create_region_mesh": 45, "creation": [0, 45, 78, 82, 101], "creator": [26, 45], "credit": 56, "criteria": [63, 103], "criterion": 24, "critic": 89, "crochet": 113, "crop": 55, "cross": [24, 25, 27, 32, 113], "crousseau": 112, "crucial": 0, "cruz": 113, "csv": [45, 59, 66, 75, 84, 95, 98, 99, 115, 125, 127, 130], "ctrl": 89, "cube": [45, 54, 61, 128], "cube_depth": 92, "cube_dir": 100, "cube_height": 92, "cube_width": 92, "cubic": [60, 66, 94, 125], "cuda": [23, 89, 90, 91, 105, 106], "cuda_dnn": 89, "cudnn": [89, 90, 105, 106], "cudnn_status_internal_error": 89, "cue": 113, "culp": 113, "culprit": 89, "curat": [45, 97, 122], "curated_cel": 97, "current": [10, 14, 16, 17, 24, 25, 27, 33, 38, 39, 40, 45, 46, 47, 56, 62, 63, 66, 68, 69, 72, 82, 85, 86, 93, 94, 99, 112], "cursor": 128, "custom": [45, 49, 66, 78, 82, 86, 93], "customis": [40, 62], "cut": [49, 51, 82], "cv2": 89, "cvf": 113, "cybernet": 129, "cylind": 80, "c\u00e9lian": 113, "d": [3, 8, 23, 25, 51, 75, 113], "dai": [19, 25, 46], "damag": [127, 128, 129], "damsteegt": 113, "dapi": 73, "dask": 57, "data": [2, 5, 6, 7, 9, 11, 14, 15, 17, 19, 20, 21, 22, 23, 28, 29, 30, 31, 34, 38, 39, 40, 42, 43, 46, 47, 51, 52, 53, 57, 59, 62, 64, 65, 66, 68, 69, 71, 72, 74, 75, 76, 78, 81, 82, 83, 86, 92, 96, 101, 102, 107, 113, 115, 116, 117, 118, 119, 121, 122, 123, 125, 126, 127, 130, 131], "datafram": [80, 84, 125], "dataset": [0, 34, 35, 45, 63, 65, 87, 88, 92, 95, 103, 104, 113, 116, 122, 123, 130], "dataset1": 64, "date": [25, 39, 125, 126], "datta": 113, "david": [11, 112], "davoudian": 113, "dawlei": 46, "de": 113, "deal": [46, 55, 118], "dealt": 73, "debt": 43, "debug": [25, 56, 60, 65, 66, 72, 75, 90, 94], "decemb": [18, 111], "decid": [27, 56, 57], "decis": [10, 11, 13, 39], "decorrel": 113, "decreas": [127, 129], "dedic": [0, 45, 78, 80], "deep": [0, 34, 65, 87, 90, 96, 99, 113], "deeper": [98, 99, 129], "default": [5, 9, 28, 29, 34, 45, 47, 49, 50, 56, 60, 61, 64, 72, 76, 77, 86, 89, 90, 92, 93, 94, 95, 98, 99, 104, 125, 130, 131, 132], "default_backend": 83, "default_download_directori": 92, "defin": [24, 28, 29, 34, 45, 46, 50, 55, 59, 73, 76, 82, 85, 86, 99], "definit": [62, 71, 72, 74, 106, 108, 118], "deform": [75, 76], "deformation_field_0": 75, "deformation_field_1": 75, "deformation_field_2": 75, "degre": [125, 128], "dehaqani": 113, "deisseroth": 113, "del": 112, "delai": 113, "delet": [5, 25, 38, 40, 125, 128], "delic": 127, "deliveri": 129, "demand": 0, "den": 113, "dendrit": [104, 113], "denni": 112, "denot": 84, "dens": 113, "densiti": [66, 115], "dentat": 113, "depend": [4, 7, 10, 11, 13, 14, 15, 16, 17, 23, 24, 25, 26, 33, 37, 38, 45, 49, 52, 61, 66, 70, 71, 73, 85, 91, 98, 101, 113, 117, 121, 124, 129], "deploy": [4, 11, 25], "deprec": [7, 15, 37, 39, 40], "depth": [30, 61, 98, 99, 100, 107, 125, 127], "der": 113, "deriv": [28, 46], "describ": [2, 3, 8, 12, 24, 25, 26, 28, 40, 45, 49, 50, 68, 72, 75, 85, 107, 127], "descript": [5, 23, 45, 49, 66], "deselect": 98, "design": [19, 78, 99, 113, 116], "desir": [25, 101, 127], "desktop": 91, "despit": 17, "detail": [3, 9, 11, 15, 18, 24, 26, 28, 38, 42, 45, 50, 56, 58, 70, 73, 75, 78, 80, 84, 85, 88, 90, 94, 101, 108, 117, 118, 128, 130], "detect": [5, 6, 9, 11, 16, 19, 28, 40, 42, 43, 59, 62, 63, 64, 65, 66, 67, 68, 87, 88, 96, 97, 98, 113, 115, 119, 120, 122, 123, 127, 130], "detected_cel": 92, "deterior": 24, "determin": [22, 52, 65, 69, 76, 113, 125, 127], "dev": [23, 29, 45], "develop": [0, 1, 4, 11, 13, 14, 15, 16, 26, 27, 29, 32, 34, 35, 39, 40, 42, 43, 44, 45, 46, 51, 52, 56, 65, 69, 78, 79, 87, 101, 110, 112, 113, 128], "development": [43, 46, 113], "deviat": [24, 60, 94], "device_count": 91, "diagnosi": 72, "dialogu": 27, "diamet": [60, 94], "diataxi": 22, "dichter": 112, "dict": [28, 45, 51, 104], "dictat": [28, 47], "dictionari": [45, 49, 51, 82, 84], "did": 26, "didn": [85, 101], "diebolt": 112, "diff": 33, "differ": [0, 2, 3, 8, 12, 14, 22, 25, 28, 45, 46, 47, 55, 63, 71, 78, 83, 85, 86, 87, 98, 99, 100, 104, 113, 115, 118, 119, 120, 122, 129, 132], "differenti": 113, "difficult": [6, 42, 43], "difficulti": [11, 16], "diffus": 47, "digit": 113, "dii": 127, "dim": [45, 126, 128], "dimens": [22, 30, 55, 60, 61, 62, 73, 75, 76, 85, 94, 95, 107, 113, 128], "dimension": [51, 113, 128], "dimidschstein": 113, "dimorph": 113, "dir": [57, 62], "direct": [10, 23, 51, 55, 74, 82, 85, 86, 113], "directli": [40, 46, 47, 49, 54, 58, 71, 79, 80, 82, 84, 88, 113, 129], "directori": [5, 6, 24, 31, 45, 50, 53, 54, 56, 57, 59, 62, 63, 66, 67, 72, 73, 75, 77, 86, 92, 93, 95, 97, 98, 99, 100, 115, 117, 118, 119, 121, 122, 125, 126, 127, 129, 130, 131], "disadvantag": 47, "disambigu": 13, "disc": 119, "discard": 51, "discern": 27, "discontinu": [24, 40, 65], "discoveri": 113, "discuss": [23, 41, 44, 45], "disk": [28, 53, 59, 117, 130], "disord": 113, "disp": 89, "displai": [6, 39, 59, 74, 83, 127, 130, 132], "disrupt": 93, "dissemin": [0, 86], "dissert": 113, "distanc": [76, 82, 125, 127], "distinct": [4, 11, 17, 24, 113, 128], "distinguish": [15, 16, 17, 128], "distribut": [6, 11, 25, 52, 53, 59, 65, 113, 116, 123, 126, 129], "diverg": [8, 11, 113], "divers": 113, "divid": [30, 49, 128], "dmnet": 113, "do": [0, 16, 17, 27, 30, 37, 38, 39, 40, 44, 46, 47, 54, 56, 62, 67, 68, 69, 70, 78, 83, 84, 86, 90, 91, 92, 97, 99, 101, 105, 110, 121, 122, 124, 125, 126, 128, 131, 132], "doc": [23, 27, 42], "dock": [54, 73, 95], "docker": [11, 14, 40, 65], "docstr": [22, 42], "document": [6, 9, 24, 26, 34, 40, 41, 42, 43, 51, 58, 68, 73, 84, 85, 87, 92, 107, 110, 121, 122], "dodd": 113, "doe": [3, 11, 24, 27, 28, 29, 33, 38, 43, 44, 45, 56, 63, 64, 105], "doesn": [3, 24, 25, 27, 44, 73, 76, 94, 95, 98, 118, 125], "doi": [46, 51, 52, 56, 65, 69, 78, 87, 113], "domain": 113, "domin": [3, 11, 113], "dominguez": 113, "don": [13, 14, 25, 29, 40, 44, 45, 46, 50, 51, 52, 56, 60, 62, 64, 65, 69, 70, 84, 92, 98, 99, 105, 116, 125, 126], "doncila": 112, "done": [15, 30, 51, 55, 70, 73, 78, 82, 101, 104, 125, 127, 128], "dopamin": 113, "dopaminerg": 113, "dorsal": [6, 8, 45, 59, 115], "doubl": [26, 71, 124, 128, 132], "down": [17, 27, 28, 74, 95, 121, 124, 126, 132], "download": [0, 1, 2, 3, 5, 8, 12, 45, 46, 48, 49, 50, 65, 69, 80, 83, 87, 92, 100, 102, 104, 106, 116, 123, 132], "download_dataset": 103, "download_neuron": 103, "downsampl": [54, 59, 66, 75, 76, 77, 128], "downsampled_atla": 75, "downsampled_image_nam": 75, "downsampled_standard_image_nam": 75, "downstream": 131, "dpf": 46, "dpshelio": 112, "draft": [23, 25], "drag": [45, 54, 59, 67, 73, 77, 95, 97, 119, 128], "draga": 112, "dragadoncila": 112, "dragavon": 113, "draw": [122, 125, 126], "drawio": 27, "drawn": [27, 126], "drive": [64, 97, 113, 116], "driven": 113, "driver": 89, "drop": [4, 28, 39, 45, 59, 67, 73, 95, 119, 128], "dropdown": [97, 130], "drug": 113, "drugowitsch": 113, "dstansbi": 112, "dual": 113, "duart": 113, "duckworth": 113, "dudok": 113, "due": [8, 11, 12, 13, 17, 24, 39, 71, 73, 83, 109, 112, 121], "dump": [28, 71], "duplic": [0, 24], "durand": 113, "durat": 129, "dure": [30, 45, 94, 113, 130], "duvel": 113, "dv": 51, "dwell": [3, 8, 11], "dweller": [8, 11], "dwi": 47, "dwivedi": 113, "dwo": [46, 47], "dyer": 113, "dynam": 113, "e": [0, 5, 6, 7, 20, 21, 23, 24, 26, 29, 33, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 86, 87, 89, 92, 94, 95, 97, 98, 99, 100, 104, 105, 107, 110, 113, 116, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130], "e0278053": 113, "e1009074": [65, 87, 113], "e11": 47, "e13": [46, 47], "e15": [46, 47], "e18": [46, 47], "e2114002119": 113, "e3001667": 113, "e65751": [51, 78, 113], "e69825": 113, "e73162": 113, "e74758": 113, "e75703": 113, "e76254": 113, "e78811": 113, "e83496": 113, "e85488": 113, "eabj0112": 113, "each": [11, 15, 16, 17, 22, 24, 25, 27, 28, 30, 32, 33, 45, 46, 47, 49, 50, 51, 56, 59, 62, 63, 65, 66, 68, 73, 75, 76, 84, 86, 87, 92, 97, 98, 99, 100, 101, 115, 118, 125, 126, 127, 128, 130, 132], "earli": [23, 113, 128], "earlier": [26, 38, 122], "eas": 24, "easi": [23, 24, 34, 47, 71, 85, 116], "easier": [6, 24, 42, 43, 51, 70, 87, 105, 130, 131], "easiest": [6, 67, 86], "easili": [0, 2, 12, 17, 45, 55, 67, 77, 86, 119], "ecc": 89, "ecosystem": [0, 2, 3, 8, 12, 34, 43, 87], "eddison": 113, "edg": [30, 46, 61], "edit": [25, 27, 33, 86, 100, 126, 128], "editor": 113, "eeg": 113, "effect": [17, 27, 53], "effici": [25, 30, 87, 113], "effort": [0, 11, 15, 26, 86, 112], "effortlessli": 0, "eft": [118, 128], "eight": 47, "einhorn": [5, 112], "either": [11, 14, 38, 39, 49, 50, 53, 56, 79, 82, 89, 97, 98, 99, 117, 128, 129], "electr": 113, "electron": [0, 113], "electrophysiolog": 127, "electrophysiologi": 113, "element": [22, 55, 86, 107, 132], "elif": [51, 78, 113], "elora": 113, "els": [16, 37, 44, 105], "elsewher": 123, "elucid": 129, "email": [44, 45], "emanpaoli": 112, "emb": [83, 86], "embed": [81, 113], "embryo": 47, "emerg": [8, 113], "emili": 112, "emilyjanedenni": 112, "emit": 24, "empir": 113, "empow": 113, "empti": 61, "en": 123, "enabl": [0, 2, 11, 42, 113], "enact": 38, "enassar": 112, "enclos": [64, 72], "encod": [27, 113], "encount": [25, 38, 55, 101], "encourag": [23, 27], "end": [2, 8, 16, 29, 39, 45, 59, 62, 78, 94, 117, 118, 121, 122, 128], "end_plan": 92, "energi": 76, "eneuro": 113, "enforc": 33, "engag": 110, "engelhardt": 113, "engert": 113, "engin": [34, 113], "englund": 113, "enhanc": [30, 46, 54, 60, 94, 113], "enjoi": [11, 17], "enlarg": 119, "enough": [23, 30, 49, 86, 121], "ensembl": 113, "enserro": 113, "ensur": [0, 3, 14, 15, 17, 23, 24, 25, 27, 32, 33, 40, 43, 45, 49, 53, 54, 61, 63, 72, 74, 78, 80, 85, 93, 94, 98, 99, 106, 121, 126, 127, 129, 130], "enter": [64, 71, 107, 118], "entir": [0, 17, 40, 63, 65, 85, 104, 116, 119], "entorhin": 113, "entrain": 113, "entri": [0, 25, 28, 29, 45, 56, 84, 100, 115], "enumer": 55, "env": [89, 101], "env_anm": 105, "env_nam": 105, "environ": [1, 3, 4, 7, 8, 9, 10, 11, 13, 17, 27, 37, 38, 39, 40, 45, 52, 56, 67, 68, 70, 79, 88, 91, 100, 101, 102, 106, 108, 113, 118, 121, 122, 125, 126, 127, 128, 129], "environment": 113, "envis": 27, "ep": 86, "epfl": 3, "epi": 113, "epoch": [92, 98, 99, 100, 122], "epp": 113, "equival": [7, 28, 29, 37, 55, 68], "eras": 128, "erdil": 113, "err": 128, "error": [25, 28, 33, 65, 69, 79, 90, 95, 113], "esc": 83, "escap": 113, "eshraghi": 113, "esmaeili": 113, "especi": [7, 45], "essenti": [45, 106, 127, 129], "establish": [0, 34, 112, 113, 129], "estel": 112, "estellenassar": 112, "estim": 128, "et": [2, 3, 8, 11, 12, 46, 61, 98, 99, 102], "eta": 100, "etc": [16, 23, 28, 34, 45, 46, 49, 52, 55, 73, 84, 86, 91, 99, 105, 118, 126], "ethan": 113, "even": [0, 40, 49, 61, 91, 99, 130], "event": [25, 56, 105], "eventu": 39, "ever": 37, "everi": [6, 23, 45, 59, 63, 66, 125, 130], "everyon": 24, "everyth": [16, 38, 43, 45, 51, 65, 80, 83, 91, 117], "everywher": 10, "evok": 113, "evolut": 113, "evolutionari": [8, 11], "evolv": [16, 24], "exact": 56, "exactli": [1, 11, 83, 125], "exampl": [0, 3, 5, 6, 11, 16, 17, 27, 28, 32, 40, 45, 51, 56, 57, 59, 64, 74, 78, 84, 86, 89, 103, 116, 117, 124, 127, 128, 129, 132], "example_mouse_100um": 47, "excel": [6, 42, 46, 115], "except": [17, 64], "exchang": 24, "excit": [9, 11, 113], "exclus": [1, 40, 76], "execut": 33, "exemplar": 40, "exhaust": 75, "exhibit": 113, "exist": [0, 7, 9, 15, 16, 27, 28, 42, 43, 44, 46, 47, 53, 56, 64, 87, 98, 99, 110, 129], "exit": 56, "expand": [45, 128], "expect": [17, 27, 28, 29, 56, 60, 63, 72, 80, 84, 94], "expens": [98, 99, 106], "experi": [0, 7, 23, 24, 27, 34, 105, 127, 129], "experienc": 7, "experiment": [0, 85, 113, 123, 129], "expertis": 24, "explain": 45, "explicit": [4, 27], "explicitli": [27, 56], "explor": [0, 49, 86, 113, 116, 119, 128, 131], "export": [27, 43, 59, 62, 78, 79, 81, 119, 120, 130], "expos": [24, 51], "express": [0, 24, 80, 113], "extend": 31, "extens": [25, 34, 56, 95, 97, 113, 130], "extern": [37, 45, 113, 129], "extra": [13, 129], "extract": [61, 84, 86, 100, 113, 127, 129], "extrem": 113, "ey": [39, 54, 77, 113, 116, 131], "eyesight": [8, 11], "f": [46, 51, 52, 55, 56, 65, 69, 78, 86, 113], "f1": 25, "f2": 25, "fa": [46, 47], "fabr": 113, "face": [28, 51], "facil": 91, "facilit": [0, 42, 43, 56, 78, 80, 84, 86, 102, 110], "fact": 85, "factor": [60, 94, 113], "fail": [33, 71, 73], "failur": [25, 56], "fairli": [86, 88], "faiss": 113, "falkner": 113, "fall": 60, "fals": [49, 86, 90, 91, 104, 119], "familiar": 24, "familiaris": 23, "fan": 89, "fanelli": 113, "fang": 113, "fanton": 113, "farrel": 113, "fashion": 16, "fast": [0, 116], "faster": [5, 91, 106, 128], "fastest": 116, "fastigi": 59, "fastmap": 113, "favil": 113, "favorit": 45, "favour": 7, "favourit": 45, "fear": 113, "featur": [3, 11, 16, 23, 25, 28, 33, 40, 43, 49, 55, 79, 83, 86, 105, 125, 126, 128, 130], "fed": 30, "fedeclaudi": 112, "federico": [51, 56, 112], "feed": 113, "feedback": [7, 19, 24, 41, 113], "feedforward": 113, "feel": [23, 27, 32, 44, 45, 105, 118], "feinberg": 113, "felder": [11, 20, 21, 51, 112], "fen": 113, "fenno": 113, "fernandez": 113, "fernholz": 113, "ferreira": 113, "fertilis": 46, "fetch": [4, 10, 15, 24, 25, 32, 38, 40, 45, 56, 57, 68, 82, 101, 103], "fetch_from_github": 28, "fetch_neurons_metadata": 103, "fetcho": 113, "few": [0, 7, 16, 23, 24, 41, 42, 64, 78, 80, 82, 86, 100, 119, 125, 130], "ffmpeg": 79, "fibr": 125, "fiederl": [47, 113], "field": [11, 28, 103, 112, 113], "fig": [62, 127], "figur": [2, 3, 8, 12, 120, 127], "fiji": 34, "file": [5, 23, 24, 25, 26, 27, 28, 33, 45, 46, 49, 56, 57, 59, 60, 61, 62, 63, 65, 67, 69, 72, 73, 77, 80, 82, 84, 86, 89, 91, 92, 93, 94, 95, 97, 98, 99, 102, 103, 115, 120, 121, 122, 125, 127, 128, 130, 131], "filenam": [59, 121], "filepath": 64, "filippo": 113, "fill": [0, 74], "filter": [60, 63, 69, 94], "filter_region": 103, "filterbi": 103, "final": [15, 16, 23, 28, 45, 55, 62, 72, 82, 127], "find": [0, 4, 10, 13, 14, 15, 16, 26, 27, 28, 37, 46, 50, 51, 52, 53, 65, 68, 69, 72, 78, 84, 86, 87, 99, 110, 125, 127, 129], "fine": [24, 89, 128], "finer": 54, "finest": 45, "finish": [73, 97, 117, 130], "first": [2, 3, 4, 6, 8, 11, 13, 14, 22, 24, 27, 39, 42, 44, 45, 49, 52, 55, 61, 62, 73, 74, 75, 80, 82, 83, 85, 91, 103, 106, 107, 113, 118, 121, 122, 125, 126, 127, 128, 129], "firstli": [54, 67, 90, 96], "fish": [46, 51], "fisher": 113, "fit": [9, 27, 63, 76, 125, 127], "fix": [5, 23, 25, 40, 42, 45, 63, 64, 105, 113, 127], "flag": [27, 48, 54, 56, 67, 72, 75, 89, 93, 117], "flask": 113, "flatmap": 113, "flavor": 113, "flexibl": [0, 43, 113], "flexibli": 7, "flip": 55, "float": [30, 76], "float64": 30, "flowchart": 27, "fluid": 113, "fluoresc": [0, 11, 12, 95, 99, 113, 118, 123, 127], "fma": 89, "fo": 5, "focal": 82, "focal_point": 82, "focu": [14, 113, 125, 131], "focus": [42, 84], "folder": [24, 45, 63, 86, 125, 126, 128], "follow": [1, 2, 4, 5, 8, 9, 10, 11, 12, 17, 22, 23, 24, 25, 26, 28, 30, 31, 33, 39, 40, 45, 47, 48, 50, 52, 53, 54, 56, 59, 60, 62, 64, 72, 76, 89, 90, 91, 93, 95, 99, 100, 101, 105, 116, 118, 119, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132], "foo": 25, "food": 113, "foot": 113, "forc": 27, "forebrain": [49, 132], "forelimb": 113, "forest": 113, "forg": [9, 23, 42, 43, 68, 70], "forget": [46, 52, 65, 69], "fork": [23, 45], "form": [27, 47, 87, 107], "format": [5, 12, 22, 25, 33, 45, 46, 51, 56, 57, 59, 73, 84, 86, 95, 113, 120, 130], "format_fmt": 28, "former": 7, "formerli": [52, 113], "fort": [52, 65, 69, 112, 113, 127], "forthcom": 13, "forum": [26, 44, 45, 66, 73, 95, 113], "forward": [3, 8, 10, 40], "foster": 113, "fotowat": 113, "found": [16, 23, 26, 30, 44, 48, 56, 62, 66, 82, 99, 112, 118, 120, 127], "four": [113, 128], "foustouko": 113, "fraction": [47, 60, 94, 98, 99], "frame": [86, 113], "framework": [0, 3, 7, 11, 22, 113], "franceschini": 113, "francesshei": 112, "francisco": 113, "frank": 113, "franklin": 47, "frankowski": 113, "frederiksen": 113, "free": [5, 14, 23, 32, 44, 45, 62, 72, 94, 98, 105, 113, 118], "freedom": 86, "freeform": 69, "freeli": 113, "frequent": [14, 17, 45], "fresh": [7, 9, 17, 39, 40, 68, 116], "freund": 113, "friedman": 113, "friedrich": 113, "friendli": [0, 24, 34, 87], "friendlyclearmap": 113, "from": [0, 1, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 23, 24, 28, 30, 32, 33, 37, 38, 39, 42, 43, 44, 45, 46, 49, 52, 54, 55, 56, 57, 59, 62, 63, 64, 69, 70, 71, 73, 74, 75, 76, 78, 79, 80, 82, 83, 84, 85, 86, 88, 89, 92, 94, 95, 97, 98, 99, 101, 102, 103, 104, 105, 112, 113, 115, 117, 118, 119, 120, 122, 124, 125, 126, 127, 128, 129, 130, 132], "frontal": [45, 51, 82, 85], "frontend": [7, 24], "frontier": 113, "frp": 51, "fuglstad": 113, "fulcher": 113, "full": [6, 11, 29, 36, 42, 43, 45, 47, 55, 59, 64, 69, 72, 76, 88, 89, 91, 98, 99, 118, 121, 122, 125, 126, 131], "fulli": [12, 23, 34, 42, 62, 78, 92], "function": [0, 1, 4, 7, 8, 10, 11, 12, 13, 14, 15, 16, 23, 24, 25, 27, 28, 29, 32, 34, 39, 40, 42, 45, 49, 51, 57, 58, 68, 70, 76, 80, 83, 84, 86, 92, 102, 104, 113, 129], "fund": 109, "fundament": [2, 12, 45, 127, 129], "funder": 0, "funderburk": 113, "funni": 16, "further": [16, 17, 27, 28, 34, 39, 40, 43, 48, 76, 108, 129], "furthermor": [23, 27], "fusion": 113, "futur": [3, 4, 8, 14, 17, 38, 40, 43, 63, 128], "g": [0, 5, 7, 20, 21, 23, 24, 26, 33, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 75, 76, 77, 78, 80, 82, 83, 84, 85, 86, 87, 92, 94, 95, 97, 99, 104, 105, 110, 113, 116, 118, 120, 121, 122, 123, 125, 126, 127, 129, 130], "gaba": 113, "gabaerg": 113, "gad1b": 132, "gadb1": 45, "gain": [2, 11, 129], "gait": 113, "galloni": 113, "game": 34, "gamma": 54, "gantar": 113, "gao": 113, "gap": 0, "gate": 113, "gaussian": [30, 60, 62, 76, 94], "gaussian_filt": 30, "gaze": 113, "gb": [62, 65, 116], "gd": 112, "gdoumou": 112, "geforc": 91, "gei": 113, "gene": [0, 80, 113], "gener": [0, 1, 2, 9, 22, 25, 26, 27, 28, 29, 31, 42, 43, 44, 51, 55, 57, 58, 59, 62, 63, 64, 74, 76, 78, 80, 82, 84, 90, 92, 95, 96, 98, 100, 109, 113, 120, 129, 130], "generate_ref_str": 28, "genet": 113, "genom": 113, "geometr": 113, "geometri": 127, "gerlei": 113, "get": [2, 3, 8, 10, 12, 23, 27, 39, 41, 49, 51, 55, 56, 59, 69, 70, 76, 79, 82, 83, 84, 85, 90, 91, 99, 100, 103, 105, 110, 112, 116, 118, 119, 121, 122, 132], "get_actor": 82, "get_cel": 92, "get_device_properti": 91, "get_fields_valu": 103, "get_neurons_by_structur": 103, "get_neurons_metadata": 103, "get_plan": 82, "get_structure_ancestor": 49, "get_structure_descend": 49, "get_structure_mask": 49, "get_structures_slice_coord": 51, "ghani": 113, "giad035": 113, "gigasci": 113, "gill": 113, "gin": [24, 26, 32, 45, 49], "girven": 113, "git": [25, 32, 33, 45, 79, 128], "github": [19, 20, 23, 24, 25, 26, 27, 28, 32, 33, 34, 39, 44, 45, 78, 79, 84, 86, 95, 102, 112, 128], "give": [41, 45, 49, 55, 56, 86, 117, 118], "given": [0, 5, 28, 45, 49, 51, 56, 60, 62, 82, 84, 94, 103], "glanc": 36, "glass": 126, "global": 76, "global_step": 89, "globe": [2, 12, 24], "globular": 113, "glutam": 113, "glutamaterg": 113, "go": [0, 10, 23, 24, 25, 40, 45, 73, 82, 84, 91, 97, 100, 101, 116, 117, 125, 126, 128], "goal": [0, 3, 8, 78, 86, 113], "goc": 112, "goe": [105, 128], "golden": 113, "golomb": 113, "gong": 113, "gon\u00e7alv": 113, "good": [2, 47, 49, 91, 99, 119, 121, 128], "googl": 113, "got": 1, "gpu": [9, 61, 88, 89, 91, 98, 108, 116, 117], "graf": 113, "graham": [11, 56, 112], "grai": 113, "grain": 24, "grammar": 113, "grant": 109, "graphic": [6, 7, 11, 16, 24, 34, 43, 48, 65, 70, 113, 116, 127, 128], "greater": [15, 106], "greatli": 5, "green": [8, 63, 86], "greenstreet": 113, "grei": [2, 8, 132], "grid": [76, 128], "grilli": 113, "groblewski": 113, "grosso": 112, "grow": [39, 43], "grown": 16, "gruver": 113, "gschwind": 113, "gu": 113, "guarante": [24, 101], "gubra": [46, 112], "gui": [7, 24, 27, 42, 54, 70, 74], "guid": [5, 27, 35, 44, 70, 88, 90, 97, 113, 118, 121, 122, 127], "guidelin": [4, 11, 27, 31], "guiet": 113, "guillaum": 112, "guillaumelegoc": 112, "gulsev": 113, "guo": 113, "gupta": 113, "gustison": [12, 47], "guthman": 113, "gz": [26, 45, 86, 128], "g\u00fcnther": 113, "h": [52, 56, 62, 65, 69, 72, 99, 113], "h5": 84, "ha": [1, 5, 6, 9, 10, 11, 13, 16, 17, 24, 25, 26, 30, 32, 33, 37, 38, 39, 40, 42, 43, 45, 47, 56, 60, 65, 66, 73, 75, 80, 82, 84, 86, 92, 99, 106, 117, 118, 119, 121, 127, 128, 129, 130], "haas": 53, "hackathon": 110, "had": [6, 11, 15, 40, 53], "hadawai": [12, 112], "hadwig": 113, "hagihara": 113, "hahn": 113, "half": [76, 82], "hallmark": 17, "halv": 76, "halves_align": 128, "hamati": 51, "hamburg": 113, "hammond": 113, "han": 113, "hand": [30, 54, 73, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "handl": [17, 37, 55, 80, 82, 89], "hang": 42, "hanganu": 113, "happen": [1, 11, 16, 17, 86, 95], "happi": [40, 45, 51, 86, 98, 99, 128], "harald": 112, "haraldreingrub": 112, "hard": [112, 116], "hardwar": 70, "harrahil": 113, "harri": [112, 113], "harrington": 113, "harth": 113, "hasn": 89, "hatch": 46, "hatter": 113, "haussler": 113, "have": [0, 2, 3, 4, 5, 6, 8, 9, 10, 11, 12, 14, 16, 17, 22, 23, 24, 25, 27, 28, 29, 30, 33, 34, 37, 39, 40, 41, 42, 43, 44, 45, 46, 47, 49, 54, 55, 56, 59, 62, 63, 64, 65, 68, 70, 72, 73, 74, 76, 77, 82, 83, 84, 86, 88, 90, 91, 97, 98, 99, 101, 103, 105, 106, 110, 116, 117, 121, 124, 125, 126, 128, 130, 132], "hdf5": [79, 121, 125, 126], "he": [5, 61, 98, 99, 113], "head": [16, 23, 25, 28, 40, 41, 84, 103, 113, 127], "health": 113, "heatmap": [1, 17, 24, 42, 62, 66, 101], "hecksher": 113, "hege": 113, "height": [22, 55, 61, 107], "held": 28, "heller": 113, "help": [14, 16, 23, 26, 34, 44, 48, 56, 59, 66, 73, 79, 91, 95, 107], "helper": [28, 80], "hemisher": 49, "hemispher": [2, 45, 47, 50, 59, 72, 74, 75, 128, 130], "hemisphere_from_coord": 49, "hemisphere_l": 72, "hemisphere_r": 72, "hengen": 113, "here": [11, 23, 26, 34, 44, 45, 51, 58, 62, 64, 68, 73, 78, 80, 85, 89, 92, 100, 105, 106, 112, 118, 121, 127, 128, 129], "hernando": 112, "hernandomv": 112, "hesen": 113, "heterogen": 113, "heuvel": 113, "hidden": [5, 24, 50, 95], "hierarch": 84, "hierarchi": [45, 46, 50, 82], "hierarchy_lev": 49, "high": [0, 23, 24, 28, 40, 41, 61, 63, 69, 70, 71, 73, 77, 88, 99, 113, 116, 117, 127, 129], "higher": [4, 10, 45, 49, 76, 106, 128, 131], "highli": [3, 11, 128], "highlight": [26, 53, 97, 121, 122, 128], "hindbrain": [49, 113], "hing": 1, "hint": 132, "hip": 51, "hippocamp": 113, "hippocampu": 113, "hirokawa": 113, "histogram": 76, "histolog": 113, "histologi": [34, 113], "histopathologi": 113, "histor": [15, 24, 39], "histori": 23, "hit": [25, 27], "hnida": 113, "hoag": 113, "hobbiss": 113, "hoc": [25, 113, 127, 129], "hoeher": 113, "hold": [28, 126], "home": [5, 11, 14, 24, 32, 50, 93], "hood": [7, 27, 40, 51, 71], "hope": [15, 43, 63], "hopefulli": 106, "horizont": [51, 82, 85, 94, 95], "horst": 112, "horsto": 112, "host": [22, 23, 24, 25, 47, 109, 123], "hotfix": 25, "hou": 113, "hour": [5, 91, 99, 117], "housekeep": 16, "hover": [54, 128, 132], "how": [7, 9, 11, 13, 17, 23, 27, 28, 32, 38, 44, 51, 54, 60, 61, 66, 72, 73, 76, 78, 80, 84, 85, 86, 96, 98, 99, 100, 101, 106, 110, 113, 116, 118, 119, 121, 122, 125, 126, 127, 128, 129, 130, 131, 132], "howev": [0, 1, 3, 6, 11, 13, 14, 16, 19, 25, 27, 28, 29, 37, 38, 39, 40, 45, 47, 53, 56, 63, 68, 71, 82, 84, 85, 86, 92, 93, 99, 101], "hpc": 70, "hsu": 113, "html": [78, 81, 82, 123], "http": [45, 46, 51, 52, 56, 65, 69, 79, 87, 112, 123, 128], "huang": 113, "hub": [53, 73], "huffman": 113, "huge": [42, 103], "human": [2, 11, 28, 43, 46, 50, 56, 72, 99, 113], "hundr": 65, "hunt": 113, "huo": 113, "hussain": 112, "hwaun": 113, "hybridis": [8, 11], "hypothes": 113, "h\u00fcbener": 113, "i": [0, 11, 19, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 37, 39, 41, 42, 43, 44, 46, 47, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 79, 80, 82, 83, 84, 85, 86, 87, 89, 90, 92, 93, 95, 96, 97, 98, 99, 100, 102, 103, 104, 106, 107, 109, 110, 112, 113, 115, 116, 117, 118, 119, 121, 122, 125, 126, 127, 128, 129, 130, 131], "ial": 107, "iar": 107, "iaroslavna": 112, "icon": [54, 77, 126, 128, 131, 132], "id": [33, 45, 50, 89, 103, 125], "idea": [41, 92, 99, 118, 119, 128], "ideal": [25, 26, 63, 86, 91, 116], "ident": [49, 70], "identifi": [0, 17, 45, 51], "idisco": [46, 47], "ieee": [113, 129], "iet": 113, "ignal": 117, "ignor": [56, 79, 86, 89, 105], "igor": [11, 21, 112], "igortatarnikov": 112, "ihc": 46, "ill": 16, "illustr": [27, 28, 84, 116, 118, 130], "imag": [0, 2, 5, 6, 8, 11, 13, 14, 19, 20, 21, 22, 24, 26, 27, 30, 40, 43, 44, 45, 46, 47, 50, 51, 52, 53, 54, 55, 58, 59, 61, 62, 65, 66, 69, 71, 72, 73, 74, 75, 76, 77, 81, 82, 85, 86, 87, 92, 94, 95, 97, 108, 113, 116, 117, 118, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 132], "image_directori": 57, "image_io": [10, 84], "imagej": [55, 107], "imagin": 82, "imio": [11, 42], "immedi": [23, 39, 113], "immunolabel": 113, "impact": [23, 113], "imper": 129, "implant": 113, "implement": [6, 8, 24, 28, 56, 62, 87, 113], "import": [5, 10, 14, 15, 23, 24, 26, 27, 28, 33, 37, 38, 40, 42, 43, 45, 47, 49, 51, 53, 55, 57, 83, 84, 85, 86, 91, 92, 103, 105, 120, 122, 127, 129], "importantli": 59, "importlib": 24, "imposs": 56, "improv": [6, 9, 17, 27, 40, 42, 69, 73, 76, 86, 95, 99, 118, 128], "imread": 92, "imshow": 55, "incid": 113, "includ": [5, 11, 16, 17, 23, 26, 27, 32, 33, 37, 38, 39, 40, 42, 43, 45, 46, 47, 54, 62, 69, 70, 71, 77, 82, 84, 86, 90, 98, 99, 121, 122, 125, 126, 128, 132], "incompat": [25, 27], "incomplet": 42, "incongru": 113, "inconsist": [17, 42], "incorpor": [0, 34, 53], "incorrect": [69, 71], "incorrectli": [97, 99], "increas": [9, 42, 61, 62, 72, 76, 91, 94, 98, 113, 119], "increasingli": [0, 85], "increment": [11, 17], "incub": 129, "inde": [29, 47], "independ": [5, 7, 24, 30, 62, 113, 127], "index": [45, 49, 55], "indic": [39, 82, 119, 124], "indispens": 0, "individu": [0, 5, 16, 17, 24, 27, 33, 40, 41, 59, 60, 73, 113, 128], "ineuron": 112, "infer": [33, 56, 91], "inferior": [47, 55, 74, 128], "info": [40, 46, 56, 73, 117], "inform": [4, 11, 22, 25, 26, 27, 28, 30, 40, 45, 49, 51, 54, 56, 66, 68, 76, 84, 86, 87, 112, 119, 121, 122, 125, 126, 130, 131], "informat": 113, "ing": 40, "ingredi": 45, "inherit": 28, "inhibit": 113, "inhibitori": 113, "initi": [0, 17, 44, 55, 56, 60, 89, 90, 99, 107, 110, 112, 128], "initialis": 120, "inject": [52, 63, 84, 113, 120, 126, 129], "injur": 113, "injuri": 113, "innat": 113, "input": [6, 53, 64, 72, 74, 75, 82, 99, 113, 128], "insensit": 28, "insid": [23, 30, 39, 68, 88, 122], "insight": [2, 11, 113], "inspect": [0, 103], "inspect_meshes_fold": 45, "inspir": 112, "instal": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 23, 24, 25, 29, 33, 37, 38, 39, 42, 43, 45, 48, 53, 56, 72, 78, 89, 93, 95, 98, 108, 116, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "instanc": [24, 28, 53, 80, 82, 86, 104], "instanti": [28, 49, 55], "instead": [10, 15, 27, 37, 40, 47, 49, 51, 61, 105, 118, 122, 126], "institut": [0, 70, 91, 106, 109], "instruct": [2, 3, 8, 9, 12, 14, 15, 17, 26, 39, 40, 48, 52, 54, 64, 91, 101, 105, 106, 121, 122, 124, 125, 126, 127, 129, 131, 132], "insular": 113, "intact": 113, "integ": [25, 45], "integr": [22, 24, 42, 78, 82, 113, 129], "intend": [28, 37, 82, 85], "intens": [30, 60, 90, 94, 96], "inter": 16, "interact": [0, 1, 10, 11, 12, 13, 16, 27, 29, 46, 49, 74, 82, 86, 107, 113, 127], "interar": 113, "intercal": 113, "interchang": 28, "interdepend": [17, 27, 40], "interest": [2, 3, 8, 11, 24, 26, 29, 45, 73, 125, 126, 129], "interf": 32, "interfac": [0, 6, 7, 11, 12, 15, 16, 17, 22, 24, 27, 28, 34, 38, 40, 43, 46, 52, 56, 65, 68, 69, 70, 77, 87, 113, 116, 127, 128], "interfer": [24, 127], "interhemispher": 113, "interlink": 27, "intermedi": [29, 62, 72, 75], "intern": [15, 16, 37, 38, 40, 113], "internet": [28, 49, 93, 124], "interneuron": 113, "interoper": [0, 24, 27, 34, 45, 56, 101, 110], "interpol": [86, 125], "interpret": [42, 43, 56, 64, 72, 76], "interrupt": 89, "intersect": 51, "intra": 113, "intric": 129, "introduc": [20, 21, 25, 55, 127], "introduct": 108, "introductori": 128, "intuit": [6, 15, 24, 42, 43], "invari": 113, "invert": [30, 69], "investig": 113, "invok": 28, "involv": [2, 3, 6, 8, 11, 12, 13, 15, 55, 82], "io": [1, 4, 5, 17, 28, 58, 59, 92, 122, 123], "iordanid": 113, "ipr": 55, "irradi": 113, "irrespect": 23, "is_avail": 91, "ischemia": 113, "iscienc": 113, "isn": [6, 39, 42, 44, 64, 105, 128], "iso": 113, "isocortex": [3, 11], "isosurfac": 84, "isotrop": 128, "isra": 113, "issn": 51, "issta": 113, "issu": [7, 15, 16, 40, 44, 45, 50, 72, 75, 89, 90, 101], "item": [23, 104], "iter": [6, 99], "ito": 113, "its": [3, 4, 7, 11, 13, 15, 16, 17, 23, 24, 28, 38, 42, 45, 49, 52, 54, 56, 74, 82, 84, 113, 116, 128, 129, 130], "itself": [13, 24, 25, 27, 28, 30, 38, 66, 69, 101], "iurilli": 113, "j": [65, 69, 87, 113], "jacinta": 113, "jacob": 113, "jag": 5, "jahn": 113, "jaimergp": 112, "jame": 113, "janarthanan": 113, "jane": 112, "janelia": [102, 103], "jare": 113, "java": 69, "jcbfm": 113, "jiao": 113, "jin": 113, "jingji": [112, 127], "job": 33, "joe": 112, "joeziminski": 112, "johanna": 113, "johansson": 113, "join": [16, 23, 125], "jone": 113, "jonsson": 113, "jord\u00e1": 113, "jorg": 69, "joss": [46, 52, 56, 65, 69, 113], "journal": [46, 51, 52, 56, 65, 69, 87, 113], "journei": [11, 15], "jo\u00ebl": 113, "jpg": 86, "json": [45, 46, 50, 66, 75, 80, 84], "juanma9613": 112, "judkewitz": 113, "jule": [74, 112], "julesschol": 112, "julia": 113, "jump": 16, "june": 111, "jung": 112, "jupyt": [78, 81], "just": [2, 4, 5, 10, 15, 16, 17, 25, 28, 38, 40, 42, 45, 49, 67, 70, 78, 80, 82, 86, 93, 97, 100, 105, 117, 118, 128, 130], "justin": 112, "juvenil": [2, 11], "k": [112, 113], "k3d": [83, 86], "kailyn": 112, "kailynkfield": 112, "kalteneck": 113, "kanodia": 113, "kantor": 113, "kapoor": 113, "karali": 113, "karayanni": 113, "karsh": 113, "kasri": 113, "katharina": 113, "kaufman": 113, "kclamar": 112, "keep": [11, 15, 24, 25, 37, 39, 45, 51, 55, 56, 60, 61, 78, 98, 99, 104, 105], "kei": [0, 3, 7, 8, 11, 16, 17, 28, 45, 47, 49, 54, 86, 99, 122], "kepec": 113, "keppler": 113, "kept": [32, 51], "kera": [98, 122], "kernel": 30, "keshavarzi": [65, 87, 112, 113, 118], "ketamin": 113, "keyboard": [82, 86, 122, 130], "keyfram": 86, "kieslich": 113, "kiggin": 112, "kim": [46, 112, 113], "kim_dev_mouse_idisco_10um": [46, 47], "kim_dev_mouse_mri_a0_10um": [46, 47], "kim_dev_mouse_mri_adc_10um": [46, 47], "kim_dev_mouse_mri_dwi_10um": [46, 47], "kim_dev_mouse_mri_fa_10um": [46, 47], "kim_dev_mouse_mri_mtr_10um": [46, 47], "kim_dev_mouse_mri_t2_10um": [46, 47], "kim_dev_mouse_stp_10um": [46, 47], "kim_mous": 5, "kim_mouse_100um": [46, 47], "kim_mouse_10um": [46, 47], "kim_mouse_25um": [46, 47], "kim_mouse_50um": [46, 47], "kimberli": 112, "kind": [55, 63, 105, 119, 132], "kinet": 113, "king": 113, "kintscher": 113, "kjungwoo5": 112, "kleinfeld": 113, "kleven": 113, "knit": 14, "knock": [17, 27], "know": [7, 13, 34, 40, 44, 45, 49, 52, 62, 69, 70, 78, 85, 93, 105, 117, 118, 125, 126, 127], "knowledg": 110, "known": [11, 13, 16, 28, 42], "koch": 113, "kochubei": 113, "kofler": 113, "kolaxi": 113, "kolluru": 113, "kondo": 113, "kostka": 113, "koushik": 112, "kozol": [8, 11, 47, 112], "kraus": 113, "kronman": 113, "krubitz": 113, "kunkhyen": 113, "kunst": [102, 112], "kuo": 113, "kuyat": 113, "kwan": 113, "l": [46, 51, 52, 56, 65, 69, 74, 78, 87, 113, 118, 128], "l2": 113, "l5": 113, "la": 113, "lab": [8, 11, 46, 112], "label": [0, 5, 9, 27, 45, 49, 50, 51, 53, 55, 63, 65, 66, 77, 80, 82, 87, 91, 94, 95, 97, 99, 118, 126, 127, 128, 129], "laboratori": 113, "lai": 45, "laid": 45, "lami": 113, "lammer": 112, "landesbibliothek": 113, "languag": 39, "laplac": 30, "laplacian": [30, 60, 94], "laptop": [20, 21, 24, 70], "larg": [0, 3, 11, 17, 19, 34, 43, 45, 86, 87, 88, 92, 95, 98, 99, 113, 116], "larger": [11, 12, 98, 99, 128], "largest": [60, 94], "larkum": 113, "larval": 83, "last": [22, 25, 62, 106], "lastli": [52, 65, 69, 73], "later": [2, 6, 15, 30, 38, 39, 40, 45, 53, 59, 73, 77, 88, 93, 97, 99, 105, 113, 115, 125, 126, 128], "latest": [1, 5, 12, 24, 25, 27, 38, 40, 42, 45, 68, 105, 123], "latest_vers": [26, 45], "latter": [7, 25], "launch": 124, "laura": [20, 112], "lauraporta": 112, "lauridsen": 113, "lavian": 113, "layer": [6, 24, 42, 43, 45, 49, 54, 59, 73, 92, 94, 95, 97, 100, 113, 115, 119, 121, 122, 125, 126, 128, 129, 130, 131, 132], "layerlist": 128, "lazcano": [2, 11, 47], "lcossel": 112, "le": 112, "lead": [8, 76], "learn": [0, 19, 34, 61, 65, 78, 87, 90, 96, 98, 99, 113], "learning_r": 92, "least": [10, 12, 24, 25, 27, 68, 98, 106], "leav": [5, 42, 43, 45, 56, 62, 72], "lebedeva": 113, "led": 112, "lee": [112, 113], "left": [22, 49, 50, 54, 55, 59, 72, 73, 74, 94, 95, 107, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "left_cell_count": [6, 59, 115], "left_cells_per_mm3": [59, 115], "left_volume_mm3": [59, 115], "legaci": 16, "len": 92, "length": [30, 33, 45, 127], "lenzi": [52, 65, 69, 112, 113], "less": [15, 30, 117, 118, 125], "let": [7, 25, 34, 52, 69, 78, 86, 106], "letter": [73, 128], "level": [11, 15, 24, 25, 27, 28, 40, 41, 45, 49, 73, 113], "leverag": [0, 34, 129], "li": [112, 113, 127], "libbi": 113, "librari": [10, 33, 34, 49, 90], "licens": 56, "lidakanari": 112, "lie": 128, "light": [11, 12, 102, 113], "lightsheet": [20, 21, 47, 63, 87], "lightweight": [102, 113], "like": [0, 2, 3, 5, 7, 8, 12, 13, 14, 16, 17, 25, 28, 29, 33, 34, 41, 44, 49, 51, 57, 59, 62, 64, 65, 67, 73, 80, 82, 84, 85, 88, 90, 91, 92, 93, 95, 99, 100, 102, 103, 105, 115, 116, 117, 120, 125, 126, 128, 131, 132], "likewis": 40, "limbic": 113, "limit": [16, 17, 42, 47, 54, 64, 70, 71, 86, 91, 94, 130, 131], "limog": 113, "lin": 113, "line": [4, 5, 6, 7, 11, 14, 15, 16, 17, 24, 27, 28, 29, 33, 38, 39, 40, 42, 43, 45, 46, 47, 56, 57, 68, 69, 77, 80, 82, 84, 86, 93, 97, 99, 113, 117, 118, 121, 122, 123, 125, 129, 132], "lineactor": 42, "lineag": 113, "linear": 9, "link": [25, 26, 31, 40, 45, 68, 95, 101, 116], "lint": [25, 32], "linux": [105, 106, 118], "list": [4, 16, 27, 28, 37, 39, 40, 45, 47, 48, 49, 53, 56, 66, 72, 73, 75, 82, 84, 92, 103, 106, 113, 115, 118, 128, 130, 132], "littl": [16, 77, 128], "liu": [112, 113], "live": [16, 24, 32, 41], "ll": [4, 10, 15, 23, 28, 40, 45, 84, 89, 103, 115, 116, 117, 118], "lmu": 113, "load": [5, 15, 28, 37, 45, 49, 53, 59, 66, 67, 69, 74, 77, 78, 80, 86, 98, 103, 104, 120, 121, 122, 125, 126, 127, 129, 130, 131], "load_ani": [57, 84], "load_from_fold": 57, "load_img_stack": 57, "load_neuron": 103, "load_nii": 57, "loc": 103, "local": [24, 29, 32, 45, 49, 76, 83, 91, 94, 113], "localis": [3, 11, 127], "locar": 113, "locat": [0, 5, 17, 28, 34, 40, 49, 52, 65, 69, 78, 80, 93, 113, 127, 129], "locomotor": 113, "log": [55, 60, 66, 72, 75, 77, 89, 94, 98, 99], "log_sigma_s": 92, "logdir": [98, 99], "logic": 24, "london": [20, 21, 113], "long": [2, 11, 15, 23, 29, 39, 43, 45, 56, 73, 82, 89, 113, 116, 117, 118, 124], "longer": [5, 10, 11, 13, 14, 15, 17, 37, 39, 98, 99, 125, 126], "longitudin": 113, "look": [2, 3, 8, 14, 15, 25, 42, 44, 45, 64, 65, 82, 86, 96, 115, 116, 119], "lookup": 101, "loos": 24, "loss": [100, 113], "lot": [4, 5, 11, 23, 42, 43, 73, 84, 86, 97, 98, 100, 128], "low": [64, 118, 128, 130, 131], "lower": [11, 15, 25, 30, 49, 117, 125, 127, 128, 132], "lowest": 128, "lowet": 113, "lsa": 55, "lsfm": 46, "lstm": 113, "lu": 113, "lucero": 113, "lui": 47, "luigi": [51, 56, 112, 114], "lumbar": 113, "lupori": 113, "luviano": 113, "ly": 113, "lyon": 113, "lz": 51, "l\u00fcthi": 113, "l\u00fctje": 113, "m": [25, 27, 33, 37, 52, 65, 69, 87, 89, 112, 113], "ma": 113, "mabri": 113, "mac": [79, 121, 125, 126], "macaskil": 113, "macdowel": 113, "machin": [17, 23, 29, 32, 40, 45, 49, 61, 62, 70, 72, 88, 91, 94, 98, 105, 106, 113, 116, 117, 130, 131], "maco": [23, 68, 70, 105, 106], "madangop": 113, "made": [2, 5, 10, 11, 13, 15, 23, 25, 30, 51, 56, 112, 132], "magicgui": 24, "magnet": [2, 11, 47], "magnifi": 126, "mai": [2, 5, 7, 23, 25, 26, 27, 28, 37, 38, 41, 44, 45, 47, 50, 58, 59, 64, 66, 70, 71, 74, 75, 79, 83, 86, 88, 89, 90, 91, 93, 95, 96, 97, 98, 99, 100, 101, 107, 113, 114, 116, 117, 121, 122, 123, 124, 125, 126, 128, 132], "main": [23, 25, 28, 30, 39, 40, 45, 47, 64, 66, 67, 73, 84, 85, 92, 97, 117, 127], "mainli": 56, "mainprocess": [73, 117], "maintain": [9, 10, 11, 15, 16, 23, 24, 25, 42, 43], "mainten": [7, 11, 24, 42], "major": [0, 16, 27, 33, 58, 71, 80, 91, 119], "make": [0, 2, 3, 6, 8, 12, 15, 16, 23, 24, 25, 26, 28, 33, 38, 39, 42, 43, 45, 51, 54, 56, 59, 67, 68, 70, 73, 82, 83, 85, 86, 88, 91, 98, 99, 100, 101, 105, 106, 117, 119, 125, 126, 127, 128, 129, 130, 131], "mame": 113, "mammalian": 113, "man": 129, "manag": [4, 6, 10, 16, 39, 40, 101, 105, 124], "mani": [0, 5, 6, 17, 23, 32, 43, 46, 47, 53, 57, 58, 59, 62, 65, 67, 69, 70, 71, 73, 75, 76, 78, 84, 85, 91, 95, 98, 99, 112, 121, 125, 127, 128, 132], "manifest": [25, 113], "manipul": [22, 27, 113], "manner": [14, 17, 40, 101, 129], "manual": [4, 9, 10, 14, 16, 17, 25, 27, 33, 40, 53, 63, 99, 100, 123, 125, 127, 128, 130], "manuscript": 113, "map": [11, 12, 34, 46, 50, 51, 55, 113], "map_points_to": 55, "map_stack_to": 55, "mapped_annot": 55, "mapped_stack": 55, "marbach": 113, "march": [45, 111], "marco": 112, "marcomusi": 112, "margin": 128, "margri": [46, 51, 52, 56, 65, 69, 78, 87, 112, 113], "mark": [30, 56, 64, 72, 97, 113, 122], "marker": [52, 63, 65, 69, 113], "martin": 112, "martineau": 113, "martinez": 112, "mask": [30, 45, 62, 128, 129], "maskari": 113, "mason": 113, "mass": 113, "mastodon": 26, "match": [25, 28, 59, 61, 66, 68, 84, 92, 100, 103, 127], "mateo": [112, 127], "matham": 112, "mathieu": [51, 112], "mathieubo": 112, "matho": 113, "matia": 113, "matplotlib": [49, 51, 55, 107], "matric": 55, "matrix": 55, "matt": [5, 112], "matter": [73, 118], "matthew": 113, "max": [45, 46, 60, 62, 94], "max_cluster_s": 92, "maximilian": 112, "maximum": [33, 62], "mayb": [64, 91], "mazzamuto": 113, "mazziotti": 113, "mcclure": 113, "mcgovern": 113, "mckee": 113, "mckenna": 113, "mcmannon": 113, "mcnulti": 113, "me": 105, "mean": [7, 11, 12, 15, 16, 24, 25, 28, 30, 33, 51, 55, 56, 60, 72, 73, 74, 84, 86, 89, 94, 99, 118, 128], "meantim": 124, "mechan": 113, "mechano": 113, "mechanosensori": 113, "medero": [112, 129], "medfilt2d": 30, "media": [0, 64], "medial": [59, 113], "median": 30, "mediat": 113, "medic": [111, 113], "medicin": 113, "medium": 111, "mediumseagreen": 120, "medulla": [59, 113], "medyukhina": 112, "meech": 112, "meechan": 112, "meet": 23, "mehra": 113, "meijer": 113, "mejia": 113, "melin": 113, "member": [34, 45], "membran": 53, "memori": [30, 61, 89, 91, 106, 113], "mendez": 113, "meng": 113, "mention": [16, 28, 38, 39], "menu": [37, 52, 95, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132], "merg": [11, 16, 17, 23, 25, 26, 27, 30, 38, 40, 42, 45], "mesh": [2, 8, 46, 50, 55, 80, 82, 84, 102, 104, 132], "mesh_from_structur": 49, "mesh_util": 45, "meshfile_from_structur": 49, "meshio": 49, "mesolimb": 113, "mesoscal": [0, 113], "mess": 105, "messag": [23, 25, 26, 56, 65, 69, 79, 90], "messi": 24, "meta": [4, 10, 17, 24, 25, 31, 40, 56], "metacel": 112, "metadata": [28, 45, 46, 50, 56, 71, 103], "metapackag": [5, 11, 24, 27, 42], "metaplugin": [42, 43], "metatata": 49, "method": [11, 12, 25, 28, 49, 53, 72, 80, 81, 83, 84, 86, 105, 113, 118, 125, 126, 129], "mexican": [11, 46], "mexicanu": [8, 11, 47], "mexicanum": [11, 47], "mice": [3, 11, 47, 113, 127], "michael": [56, 112], "michelon": 113, "michki": 113, "micoli": 113, "microanalysi": 113, "microglia": 113, "micromanipul": 127, "micromet": 45, "micron": [5, 46, 49, 51, 59, 61, 62, 85, 92, 94, 95, 107, 118], "microscop": 99, "microscopi": [11, 12, 18, 34, 47, 52, 63, 65, 69, 91, 92, 99, 113, 123], "microsoft": [89, 115], "microtu": [11, 47], "mid": 82, "midbrain": [49, 113], "middl": 67, "midplan": 128, "might": [7, 25, 27, 40, 49, 56, 79, 80, 84, 85, 86, 100, 127], "migrat": [11, 14, 15, 38, 40], "miller": 113, "millimet": 128, "millimetr": 66, "million": 5, "millisecond": 113, "min": 19, "mind": [24, 27, 56, 104], "minh": 113, "miniconda": [70, 88], "miniconda3": 89, "minim": [16, 78, 129], "minima": 76, "minimis": 25, "minimum": [22, 27], "minor": [4, 5, 11, 27, 33, 91], "minut": [24, 73, 86, 100], "mirow": 113, "mirror": 23, "mishchanchuk": 113, "mismatch": 85, "miss": [28, 42, 128], "misspel": 64, "mitosi": 113, "mitra": 113, "mitrevica": 113, "mittal": 113, "mix": [43, 113], "mixtur": 100, "miyazaki": 113, "mi\u00f1ano": 112, "mkunst23": 112, "mlapi": 103, "mm": [76, 115], "mo": [51, 86, 103], "mock": 32, "modal": [0, 24, 47], "modat": 69, "mode": [5, 72, 125, 126, 130], "model": [0, 2, 5, 8, 9, 11, 12, 19, 24, 61, 63, 65, 87, 92, 94, 98, 99, 113, 122], "model_weight": 92, "modern": [24, 61, 91, 106], "modifi": [40, 45], "modul": [28, 37, 113], "modular": [11, 16, 24], "mohammad": 113, "mohan": 113, "moissidi": 113, "molecular": [113, 127], "moment": 82, "monosynapt": 113, "montgomeri": 113, "month": [7, 22, 41, 42, 46, 56], "moolchand": 113, "moor": 113, "more": [2, 3, 4, 5, 7, 8, 9, 11, 15, 16, 17, 23, 24, 25, 27, 28, 30, 34, 38, 40, 42, 43, 44, 45, 47, 51, 58, 63, 68, 73, 76, 78, 79, 80, 84, 85, 86, 87, 88, 90, 91, 110, 119, 121, 122, 125, 126, 128, 130], "moreno": 113, "moreov": 55, "morimoto": 113, "morphapi": [0, 1, 4, 5, 24, 80, 84, 101, 103, 104], "morpholog": [0, 60, 94, 102, 103, 104, 113], "morphologi": [0, 80, 81, 102, 104, 113], "moskovitz": 113, "most": [0, 5, 9, 17, 23, 24, 45, 47, 49, 54, 56, 57, 59, 70, 73, 74, 78, 79, 85, 88, 89, 92, 107, 115, 116, 118], "mostli": [23, 42, 47, 119], "motion": 25, "motor": [103, 113], "mount": [39, 64], "mous": [0, 5, 11, 12, 34, 43, 46, 54, 65, 69, 70, 72, 83, 87, 91, 92, 102, 103, 113, 118, 126, 128, 131], "mouselightapi": 103, "move": [1, 5, 7, 11, 16, 17, 24, 25, 38, 39, 40, 45, 55, 68, 82, 86, 91, 128, 130, 131], "movement": 113, "mpin_celldb": 103, "mpin_zfish_1um": [45, 46, 47, 51, 83, 124, 132], "mpinmorphologyapi": 103, "mri": [2, 11, 43, 46, 47, 113], "mtr": [46, 47], "mu": [45, 103, 113], "much": [3, 11, 14, 16, 23, 42, 47, 62, 73, 98, 99, 100, 106, 119, 127], "multi": 113, "multi_processor_count": 91, "multicor": 91, "multilevel": 45, "multimod": [43, 113], "multipag": 67, "multipl": [5, 11, 16, 17, 27, 28, 43, 45, 46, 55, 56, 60, 63, 69, 73, 80, 86, 94, 105, 113, 115, 120, 127, 128, 129], "multiplex": 113, "multipli": 59, "multisensori": 113, "munich": 0, "murrai": 113, "murri": 113, "musal": 113, "musculu": [45, 103], "musi": 112, "must": [6, 11, 23, 25, 28, 45, 47, 53, 54, 61, 62, 63, 72, 73, 78, 95, 97, 98, 105, 107, 113, 127, 129], "mutual": 76, "mu\u00f1oz": 113, "my": [63, 64, 72, 105], "my_arrai": 57, "my_data": 63, "mydata": [57, 84], "mypi": 33, "myteri": 86, "myung": 113, "m\u00fcller": 113, "n": [9, 23, 54, 62, 64, 72, 75, 76, 77, 80, 89, 101, 105, 113, 126, 128], "n_free_cpu": 92, "n_sds_above_mean_thresh": 92, "nadif": 113, "nagoshi": 113, "najva8": 128, "nakamura": 113, "name": [2, 4, 5, 8, 11, 12, 13, 14, 15, 16, 17, 24, 25, 28, 31, 37, 38, 39, 40, 42, 43, 44, 45, 46, 48, 49, 50, 51, 55, 56, 72, 82, 85, 86, 89, 91, 105, 116, 125, 126, 128, 130, 131], "name_of_packag": 33, "napari": [1, 2, 3, 4, 5, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 22, 23, 24, 27, 28, 32, 34, 39, 40, 42, 43, 45, 48, 52, 54, 67, 69, 74, 77, 88, 92, 95, 97, 98, 99, 101, 107, 113, 119, 121, 122, 123, 125, 126, 127, 128, 129, 130, 131], "napari_atla": 45, "napari_atlas_represent": 45, "napariatlasrepresent": 45, "narasimhan": 113, "nassar": 112, "natal": 46, "nation": 113, "natur": [14, 69, 72, 113], "navarret": 113, "navig": [5, 42, 43, 100, 113, 118, 125, 126, 128, 130, 132], "ncomms11879": 69, "ndimag": 30, "ndisplai": 45, "ndtiff": 92, "nearli": 89, "neat": 55, "necess": 0, "necessari": [10, 14, 25, 27, 44, 45, 48, 53, 80, 85, 86, 131], "necessarili": [13, 45], "necessit": 17, "need": [3, 8, 11, 12, 16, 23, 25, 27, 28, 37, 38, 39, 40, 43, 44, 48, 49, 50, 51, 52, 55, 56, 59, 61, 63, 65, 68, 70, 73, 78, 79, 80, 82, 83, 84, 85, 86, 88, 89, 90, 91, 92, 93, 96, 98, 99, 100, 101, 106, 107, 110, 112, 117, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "neg": 76, "negwer": 113, "neill": 113, "neocortex": 103, "neonat": 113, "nep": 22, "nervou": [2, 11], "net": 113, "netplotbrain": 113, "network": [61, 63, 65, 87, 90, 94, 96, 100, 113, 116, 118, 119, 123], "network_depth": 92, "network_voxel_s": 92, "neubeck": 113, "neural": 113, "neuroanatom": [0, 7, 46, 52, 56, 65, 69, 86, 113], "neuroanatomi": [0, 3, 11, 56, 110, 113, 127, 129], "neurochemistri": 113, "neurodegener": 113, "neurodevelopment": 113, "neuroimag": 47, "neuroinformat": [25, 32, 112, 113], "neurologi": 113, "neurom": 102, "neuromatch": 114, "neuromorpho": 102, "neuromorphorg": 103, "neuromorporgapi": 103, "neuromus": 112, "neuron": [0, 34, 80, 81, 82, 102, 103, 104, 113, 127, 129], "neurons_df": 103, "neurons_id": 103, "neurons_metadata": 103, "neuropixel": [113, 114, 123, 127], "neuropsychopharmacologi": 113, "neurosci": [0, 14, 34, 39, 113, 114, 129], "neuroscientif": 17, "neuroscientist": [0, 110], "neurowir": 111, "new": [0, 4, 5, 7, 9, 10, 11, 13, 14, 15, 17, 24, 27, 30, 33, 37, 38, 40, 42, 43, 44, 46, 47, 55, 59, 63, 64, 73, 74, 82, 83, 86, 95, 96, 97, 99, 101, 105, 111, 116, 122, 125, 126, 127, 128, 129, 130, 131, 132], "newer": [4, 10, 48, 79], "newest": 42, "newli": 45, "newmast": 113, "nexhipi": 113, "next": [5, 7, 11, 15, 25, 27, 41, 42, 45, 51, 82, 94, 95, 113, 122, 128, 130], "ng": 113, "ngaug": 113, "nguyen": 113, "nice": [24, 73], "nichola": 112, "nickdelgrosso": 112, "nicol": 112, "nicola": 112, "niedworok": [65, 69, 87, 112, 113], "nifti": [57, 84], "niftyreg": [68, 69, 70, 71, 72, 75], "nii": [57, 128], "niko": 112, "nikoletopoul": 113, "niksirbi": 112, "nissl": 46, "no_cel": [66, 92], "nocturn": [3, 11], "node": 45, "noisyski": 112, "nolan": 113, "non": [25, 27, 28, 43, 45, 90, 97, 99, 100, 113, 119, 122, 128], "none": [24, 51, 63, 92], "nor": [4, 11, 15], "norepinephrin": 113, "normal": [45, 47, 51, 76, 82, 91], "normalis": 30, "notabl": [16, 90], "note": [2, 7, 11, 14, 15, 23, 24, 25, 38, 47, 49, 69, 79, 83, 85, 101, 103, 128, 132], "notebook": 81, "noth": [39, 92], "notic": 76, "noun": 24, "nov": 113, "novafa": 112, "novel": 3, "novemb": [41, 42, 111], "now": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 25, 27, 28, 37, 38, 39, 40, 42, 49, 55, 63, 83, 112, 118, 127, 128, 129, 132], "noya": 113, "np": [55, 84], "npeschk": 112, "npy": [59, 66, 80, 84, 120, 125, 127, 130], "nuclear": [5, 63, 113], "nuclei": 113, "nucleu": [6, 59, 60, 115], "number": [0, 4, 5, 6, 10, 11, 15, 16, 17, 24, 25, 27, 28, 30, 33, 34, 42, 43, 45, 46, 47, 49, 51, 62, 65, 66, 72, 74, 75, 76, 82, 89, 90, 94, 98, 99, 102, 115, 116, 117, 119, 125, 129, 130, 131], "numer": [116, 119], "numpi": [22, 45, 55, 57, 80, 84, 92, 125], "numpydoc": 22, "nvidia": [88, 89, 91, 116, 117], "nx3": 80, "nyberg": 113, "o": [56, 62, 67, 99, 100, 113, 117], "obenhau": [52, 65, 69, 112, 113], "obj": [45, 46, 50, 84], "object": [13, 28, 46, 52, 55, 78, 80, 85, 86, 90, 92, 96, 113, 126, 129], "obliqu": 128, "oboh": 113, "observ": 113, "obstacl": 0, "obtain": [14, 28, 49], "obviou": [23, 119], "obvious": 82, "occasion": 80, "occur": [16, 39, 89], "occurr": 37, "ochrogast": [11, 47], "octob": [18, 114], "odor": 113, "off": [105, 125], "offer": [16, 26, 40, 70], "offici": 22, "offlin": 65, "often": [0, 23, 42, 53, 55, 61, 63, 91, 99], "ok": [90, 106], "okano": 113, "old": [1, 10, 15, 17, 27, 37, 38, 39, 40, 42, 45, 68], "older": [12, 46], "oldest": 39, "olfactori": [2, 107, 113], "olivi": 113, "olsen": 113, "omit": 56, "onc": [15, 16, 23, 24, 25, 26, 38, 45, 51, 55, 56, 69, 72, 73, 74, 80, 86, 95, 97, 98, 99, 100, 101, 103, 104, 117, 120, 122, 125, 126, 127, 128, 129], "oncologi": 113, "one": [0, 1, 11, 14, 15, 16, 17, 19, 22, 23, 24, 25, 27, 28, 36, 38, 40, 42, 45, 47, 50, 51, 53, 55, 56, 57, 59, 61, 63, 67, 76, 77, 82, 85, 86, 88, 89, 94, 95, 98, 100, 101, 104, 105, 107, 118, 119, 127, 128], "ones": [51, 73, 129], "onli": [10, 11, 12, 25, 27, 28, 29, 32, 38, 40, 42, 45, 47, 50, 55, 63, 69, 70, 72, 73, 76, 82, 86, 88, 93, 94, 95, 98, 99, 109, 112, 117, 127, 128, 129], "onlin": [45, 86, 103, 111, 114], "onto": [17, 40, 59, 67, 77, 97, 113, 117, 128, 131], "ontologi": [47, 113], "opatz": 113, "open": [0, 2, 5, 11, 12, 16, 25, 27, 32, 42, 44, 45, 46, 52, 53, 54, 55, 56, 59, 65, 67, 69, 77, 86, 91, 95, 97, 98, 105, 107, 110, 113, 114, 115, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "oper": [7, 11, 55, 84, 105, 106], "opioid": 113, "oppon": 113, "opportun": [4, 7, 11, 16], "oppos": [28, 40, 56], "opposit": 51, "opt": 25, "optim": [76, 113, 121], "optimis": [5, 6, 87, 94, 131], "option": [13, 15, 16, 23, 25, 27, 28, 37, 38, 39, 45, 47, 50, 52, 54, 56, 57, 60, 61, 66, 68, 69, 71, 75, 76, 83, 89, 93, 95, 99, 117, 125, 126, 129, 132], "optional_signal_channel_imag": 62, "orang": 86, "orchestr": 113, "order": [25, 27, 28, 30, 39, 55, 66, 84, 85, 107, 112, 116, 117, 125, 127, 129], "oregon": 113, "oren": 112, "orena1": 112, "org": [45, 46, 51, 52, 65, 69, 78, 87, 102, 113], "organ": [2, 8, 11, 24, 47, 84, 113], "organis": [16, 17, 23, 24, 27, 28, 43, 110], "organisation": 16, "orient": [45, 46, 50, 51, 54, 55, 62, 69, 71, 72, 73, 75, 82, 85, 108, 113, 117, 118, 131], "origin": [2, 16, 22, 26, 30, 37, 45, 47, 55, 67, 69, 72, 74, 75, 76, 85, 90, 96, 99, 107, 112, 113, 118, 128], "ormsbi": 113, "orofaci": 113, "oromanu": 113, "orthogon": 51, "ortiz": 113, "oryshchuk": 113, "oscil": 113, "oscillatori": 113, "osl": 72, "ossietzki": 113, "osteen": 113, "osten": 69, "osten_mouse_100um": 47, "osten_mouse_10um": [46, 47], "osten_mouse_25um": [46, 47], "osten_mouse_50um": 47, "osterior": [118, 128], "osypenko": 113, "other": [0, 1, 2, 3, 4, 7, 8, 11, 12, 16, 17, 19, 22, 23, 24, 25, 26, 27, 28, 42, 45, 46, 52, 54, 55, 56, 63, 66, 69, 73, 75, 79, 81, 84, 87, 89, 92, 99, 105, 110, 113, 119, 125, 126, 128, 130, 132], "otherwis": [10, 37, 40, 64, 72, 73, 84, 88, 97, 101, 125], "otolaryngolog": 113, "otsu": 129, "our": [0, 2, 3, 4, 7, 8, 11, 12, 14, 15, 16, 17, 19, 23, 25, 26, 28, 31, 40, 42, 43, 44, 45, 56, 57, 101, 116, 118, 124, 125, 126, 127, 128, 129, 132], "ourselin": 69, "out": [4, 7, 11, 16, 23, 25, 27, 30, 39, 42, 43, 44, 45, 53, 54, 56, 62, 67, 72, 78, 82, 85, 105, 110, 116, 118, 119, 125, 131], "outlier": 60, "outlin": [17, 23, 26, 42, 65, 73, 75, 82, 87, 119], "output": [6, 28, 30, 38, 39, 45, 53, 54, 56, 59, 62, 65, 67, 69, 72, 73, 86, 91, 92, 98, 99, 113, 115, 117, 118, 119, 120, 122, 125, 126, 127, 128, 129, 130, 131], "output_directori": [62, 92, 98, 99], "output_fil": 56, "outputdirectori": [98, 99], "outsid": [24, 30, 49, 50, 53, 60, 62, 82, 119], "over": [16, 24, 25, 27, 30, 41, 45, 54, 56, 76, 86, 128, 132], "overarch": 101, "overlai": [2, 8, 131], "overlaid": [67, 87, 122, 131], "overlap": [30, 60], "overnight": [116, 127, 129], "overrid": 104, "overview": [36, 49, 78, 82], "overwrit": 28, "overwritten": [28, 56], "own": [0, 14, 20, 21, 24, 25, 34, 45, 52, 61, 75, 78, 81, 86, 87, 89, 94, 98, 100, 101, 121, 122, 128], "owner": 23, "oxel": 117, "p": [33, 69, 74, 113, 118, 128, 130], "p14": [46, 47], "p2": 89, "p28": [46, 47], "p4": [46, 47], "p56": 46, "p62": 129, "p80": 46, "pa": 51, "pace": 19, "packag": [0, 1, 2, 4, 6, 10, 11, 12, 13, 14, 15, 16, 17, 22, 23, 24, 25, 26, 27, 28, 29, 33, 34, 37, 38, 40, 42, 45, 48, 49, 54, 58, 59, 67, 68, 70, 79, 84, 86, 101, 102, 105, 106, 113, 116, 118, 127], "pacureanu": 113, "pad": 55, "paddyroddi": 112, "paetzold": 113, "page": [13, 14, 15, 17, 23, 26, 40, 51, 58, 66, 73, 88, 95, 101, 125, 126, 131], "paglia": 113, "pag\u00e8": 113, "paint": [126, 128], "paintbrush": 126, "pair": [11, 12, 92], "palaniappan": 113, "palchaudhuri": 113, "palegoldenrod": 120, "pan": [54, 113], "panda": [66, 80, 84, 125], "panel": [38, 53, 125, 126], "pang": 113, "panzanelli": 113, "paper": [9, 45, 46, 52, 56, 65, 69, 78, 87, 90, 96, 99], "pappu": 113, "paprica": 113, "parallel": [30, 113], "paramet": [5, 6, 23, 51, 61, 62, 69, 70, 71, 72, 75, 82, 86, 87, 90, 92, 101, 104, 116, 121, 128, 131], "parcel": 49, "park": 113, "pars": 28, "part": [2, 3, 6, 8, 11, 12, 15, 17, 23, 24, 25, 30, 37, 42, 45, 47, 48, 51, 57, 64, 73, 82, 104, 105, 107, 115, 117, 125, 127, 130], "parti": [53, 89, 90], "partial": 24, "particular": [5, 11, 16, 20, 21, 23, 28, 29, 42, 49, 57, 70, 79, 91, 101, 112], "particularli": [3, 11, 12, 23, 40, 71, 116], "parvalbumin": 113, "pass": [26, 27, 30, 32, 51, 56, 63, 64, 67, 71, 72, 76, 80, 82, 86], "passani": 113, "passlack": 113, "password": 106, "past": [42, 56, 82], "pasterkamp": 113, "patch": [25, 27, 33], "patel": 113, "patella": 113, "path": [32, 39, 40, 45, 49, 56, 57, 62, 63, 72, 84, 86, 92, 93, 98, 99, 100, 118, 127, 129], "pathlib": [86, 92], "pathwai": [113, 129], "pati": 113, "patient": 124, "patrick": 112, "pattarika": 112, "pattern": [24, 113], "paul": 112, "paula": 113, "paulbrodersen": 112, "pavani": 113, "pavlov": 113, "pavon": 113, "pav\u00f3n": 113, "paxino": 47, "pb": [127, 129], "pcbi": [65, 87, 113], "pdf": 86, "peak": [30, 112], "pearson": 9, "peen": 112, "pei": 113, "penalti": 76, "penetr": 127, "peng": 113, "peopl": [0, 45, 73], "pep8": 33, "per": [6, 27, 42, 43, 50, 66, 115, 118, 127, 128], "peren": [47, 113], "perens_lsfm_mous": 5, "perens_lsfm_mouse_20um": [46, 47], "perez": 11, "perf": 89, "perfect": [56, 118, 128, 131], "perfectli": 118, "perform": [1, 5, 7, 13, 16, 17, 24, 27, 29, 30, 38, 40, 66, 69, 70, 72, 73, 76, 86, 95, 99, 118, 119, 121, 127], "perfus": [127, 129], "perhap": 79, "periaqueduct": 113, "perineuron": 113, "period": [27, 129], "persist": [37, 64, 89], "person": [19, 45], "perspect": [14, 15, 27], "pertain": 28, "peschk": 112, "peter": 112, "petersen": 113, "petrucco": [46, 51, 52, 56, 65, 69, 78, 112, 113, 114], "petsko": 113, "pfa": [127, 129], "pfeffer": 113, "pfister": 113, "phase": 113, "phd": 3, "phdthesi": 113, "phenotyp": [8, 11], "philip": 112, "phillip": 113, "philsham": 112, "photon": [11, 12, 20, 21, 47, 63, 87, 92, 99, 100, 113, 127, 129], "physiologi": 113, "piasini": 113, "pick": [27, 40], "pictur": 86, "pid": 89, "piec": [55, 82], "pin": [10, 17], "pinch": [11, 16], "pinpoint": 113, "pinto": 113, "pip": [1, 4, 5, 6, 9, 10, 12, 16, 17, 23, 25, 29, 37, 38, 39, 40, 43, 46, 51, 52, 55, 56, 57, 59, 68, 70, 79, 88, 101, 102, 128, 129], "pipelin": [0, 7, 11, 14, 15, 17, 23, 29, 39, 40, 47, 62, 68, 69, 101, 113], "pipett": 127, "pisano": 47, "pixel": [46, 50, 60, 61, 118, 128], "pl": 128, "place": [4, 16, 23, 27, 30, 36], "placehold": 28, "plai": [116, 128], "plan": [11, 40, 41, 42, 51, 113, 129], "planck": [45, 46], "plane": [30, 55, 60, 62, 63, 73, 82, 85, 94, 95, 107, 117, 118, 125, 128], "planner": 51, "plastic": [113, 120], "platform": [24, 43, 89, 106, 113], "plattner": 112, "pleas": [2, 3, 5, 6, 8, 9, 11, 12, 14, 16, 17, 20, 21, 23, 32, 34, 38, 41, 44, 46, 47, 50, 51, 52, 54, 58, 63, 64, 65, 66, 68, 69, 70, 71, 72, 73, 78, 85, 87, 88, 89, 90, 91, 97, 99, 101, 105, 112, 116, 118, 121, 122, 124, 125, 126, 127, 129, 130, 131, 132], "plenti": 91, "plo": [65, 87, 90, 99, 113], "plot": [9, 42, 43, 51, 55], "plotter": [34, 83], "plt": [49, 83], "plu": 55, "plugin": [5, 6, 9, 11, 13, 15, 16, 17, 20, 21, 24, 28, 34, 40, 42, 43, 52, 54, 59, 67, 69, 77, 88, 92, 95, 97, 98, 99, 101, 107, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "pmid": 51, "png": 86, "po": 82, "pochinok": 113, "point": [8, 11, 16, 25, 27, 28, 29, 30, 44, 45, 51, 53, 55, 56, 62, 63, 72, 74, 76, 80, 82, 84, 85, 86, 92, 93, 95, 97, 99, 120, 122, 125, 127, 128, 130, 131], "points_summari": 130, "poirion": 113, "polarbean": 112, "polici": 22, "polter": 113, "pon": 8, "pooch": [24, 32], "pool": [45, 99], "poor": [0, 71], "poorli": [71, 73, 99], "pop": [83, 112], "popul": [8, 11, 86, 119], "popular": 84, "popup": 83, "popup_scen": 83, "port": 69, "porta": [20, 112], "portugu": [46, 51, 52, 56, 65, 69, 78, 112, 113], "portugueslab": 112, "posit": [6, 11, 19, 55, 56, 62, 66, 69, 76, 80, 82, 86, 90, 119, 127, 130], "possess": [25, 101], "possibl": [2, 16, 17, 23, 25, 29, 32, 40, 42, 43, 44, 45, 53, 55, 56, 64, 65, 92, 103, 109, 112, 116, 128, 132], "possibli": 23, "post": [17, 26, 39, 46, 113, 116, 127, 129], "posterior": [45, 55, 128], "postingest": 113, "postsynaps": 113, "potenti": [24, 38, 40, 71, 105], "pouchelon": 113, "power": [0, 88, 116], "pprint": 49, "pr": [23, 25, 32], "practic": 99, "prairi": [11, 46], "prairie_vole_25um": [12, 46, 47], "prasad": 113, "pre": [5, 17, 32, 65, 72, 82, 85, 87, 90, 97, 100, 128], "precis": [3, 11, 113, 127], "preconfigur": 113, "predict": 113, "preempt": 25, "prefer": [25, 27, 44, 56, 86, 113], "prefix": [4, 11, 13, 24, 25, 28, 29, 56, 57], "preissl": 113, "preliminari": 28, "premotor": 113, "prep": [29, 92], "prep_model": 92, "prepar": [83, 113], "preparatori": 55, "preprint": [34, 45], "preprocess": [72, 128], "prerequisit": [52, 125, 126], "presenc": 113, "present": [11, 16, 27, 28, 32, 50, 64, 129], "preserv": 16, "press": [82, 83, 86, 111, 122, 128, 130, 132], "presuppli": 99, "presynapt": 113, "pretend": 25, "pretrain": [61, 98], "pretti": 23, "prevent": [16, 17, 27, 33, 39, 76], "previou": [9, 17, 25, 76, 89, 97], "previous": [1, 5, 6, 11, 13, 14, 15, 16, 25, 37, 40, 53, 68, 70, 101, 116, 130], "prevosto": 113, "primari": [3, 11, 27, 83, 103, 113, 117, 118, 129], "primarili": 56, "princeton": [46, 113], "princeton_mouse_20um": [46, 47], "princip": 86, "print": [49, 56, 62, 73, 82, 85, 86, 89, 91, 92, 103], "prior": [15, 65], "prioriti": [16, 24, 43], "prioritis": 56, "probabilist": 113, "probabl": [23, 89, 105], "probe": [34, 52, 113, 123, 125], "probe_track": 127, "problem": [0, 40, 46, 55, 69, 95], "proce": [97, 127, 129], "procedur": 113, "proceed": [39, 113], "process": [0, 1, 2, 6, 9, 11, 13, 23, 25, 30, 38, 39, 43, 45, 46, 51, 53, 60, 62, 69, 71, 72, 75, 84, 85, 89, 90, 92, 94, 98, 99, 113, 125, 129], "produc": [0, 28, 39, 47, 56, 59, 95, 113], "product": 0, "profil": 113, "program": [0, 24, 28, 34, 46, 56, 62, 72, 89, 105], "programm": 46, "programmat": [0, 46], "progress": [16, 24, 98, 99, 113, 124, 128], "project": [2, 3, 8, 12, 22, 23, 24, 32, 41, 44, 45, 47, 53, 54, 56, 74, 102, 103, 109, 113, 125, 126, 129], "promot": 113, "prompt": [59, 91, 105, 118, 122, 124, 130], "pronounc": 34, "propag": [16, 113], "properli": [91, 117, 122, 127, 129], "properti": [28, 113], "protect": 113, "protein": [0, 113], "proteom": 113, "proteostasi": 113, "protocol": [113, 127, 129], "provid": [0, 1, 10, 11, 13, 14, 15, 16, 17, 22, 24, 25, 27, 28, 29, 34, 38, 39, 40, 43, 45, 46, 47, 48, 50, 51, 52, 55, 56, 57, 65, 68, 69, 70, 78, 80, 82, 84, 85, 87, 88, 101, 102, 106, 113, 116, 124, 127, 128], "pr\u00e9vost": 113, "psilocybin": 113, "psl": [73, 107, 117, 118, 131], "psobolewskiphd": 112, "psr": 107, "public": [0, 2, 23, 26, 44, 45], "publicli": [0, 102], "publish": [3, 8, 11, 16, 23, 39, 45], "puchad": 113, "puchet": [3, 11, 47], "puell": 47, "pull": [26, 44, 45], "pure": 72, "purkinj": 113, "purpl": 120, "purpos": [16, 27, 31, 39, 57, 84], "purposefulli": 118, "push": [14, 23, 25, 33], "put": [60, 84, 86, 94, 117], "putignano": 113, "pvz": 51, "pwr": 89, "py": [30, 51, 64, 73, 117, 127], "pydata": 22, "pypi": [17, 23, 24, 25, 32, 39, 40, 46, 129], "pyplot": 49, "pyproject": [27, 33], "pyqt": 23, "pyramid": 103, "pyside2": 79, "pytest": 32, "python": [0, 7, 9, 11, 13, 14, 16, 20, 21, 22, 23, 24, 27, 28, 30, 34, 37, 38, 40, 42, 43, 45, 46, 52, 56, 68, 70, 79, 84, 87, 88, 89, 91, 92, 99, 101, 102, 105, 110, 113], "pytorch": [42, 90, 91], "pyvista": 34, "p\u00e9rez": 112, "q": 113, "qian": 113, "qiu": 113, "qt": 24, "qtpy": 24, "qualiti": [0, 71, 127, 129], "quantif": [0, 113], "quantifi": 129, "quantit": 113, "queri": [46, 103], "question": [23, 41, 45, 47, 101], "quick": [44, 45], "quicker": 99, "quickli": [28, 86, 98, 99, 119], "quit": [116, 117, 119], "quot": 51, "quotat": [56, 64, 72], "r": [46, 51, 52, 65, 69, 74, 78, 113], "raacampbel": 112, "rabi": 113, "radford": 113, "radiotherapi": 113, "radiu": 120, "rahmati": 113, "rai": 113, "rais": [32, 44, 45, 50, 75, 89], "ram": [62, 70, 91, 117], "rami": 51, "ramirez": 113, "ramiro": 113, "ramroomh": 112, "ran": 113, "rancz": 113, "rand": 55, "random": [45, 55], "randomli": 113, "rang": [24, 51, 76, 82, 91, 113], "rapidli": 84, "rare": 79, "rashid": 113, "rat": [43, 46, 113], "rate": [98, 99], "rather": [1, 3, 7, 11, 13, 17, 23, 25, 37, 38, 40, 47, 56, 63, 71], "ratio": 47, "raw": [0, 6, 11, 43, 54, 59, 66, 72, 75, 85, 97, 99, 119, 122, 130, 131], "rcpeen": 112, "re": [2, 5, 8, 17, 23, 24, 25, 28, 42, 44, 45, 59, 70, 78, 82, 86, 91, 95, 97, 100, 101, 105, 116, 118, 122, 128], "reach": [23, 45, 86], "read": [27, 28, 30, 68, 78, 88, 101, 116], "read_hdf": 66, "read_json": 84, "read_with_dask": [5, 57, 92], "readabl": [28, 33, 50, 56], "readi": [0, 11, 15, 16, 40, 78, 118, 127, 129], "readm": [26, 45, 50], "readout": 127, "readthedoc": 123, "real": [42, 43, 76, 92, 118, 130], "realign": 59, "realist": 63, "realiti": 113, "realli": [28, 39], "reason": [0, 23, 24, 33, 45, 62, 64, 71, 86, 93, 100, 105], "receiv": [1, 4, 10, 11, 13, 14, 16, 25, 39], "recent": [0, 3, 7, 8, 11, 23, 34, 79, 91], "receptor": 113, "recip": 25, "recognis": 28, "recommend": [5, 9, 13, 14, 15, 16, 17, 22, 23, 27, 37, 38, 39, 40, 47, 53, 59, 65, 70, 79, 88, 91, 92, 93, 98, 99, 101, 105, 106, 116, 121, 122, 125, 126, 128], "reconstruct": [34, 47, 55, 102, 104, 113], "record": [75, 113, 127], "recoveri": 113, "recreat": 128, "recycl": [39, 40], "red": [2, 8, 51, 63], "reddi": 113, "redefin": 16, "redirect": 56, "redistribut": 89, "reduc": [0, 10, 14, 15, 24, 42, 43], "redund": 27, "refactor": [27, 43], "refer": [0, 2, 8, 15, 16, 17, 19, 24, 27, 28, 34, 39, 40, 45, 46, 49, 50, 56, 65, 69, 70, 74, 76, 78, 80, 85, 105, 113, 131, 132], "refin": [46, 90], "reflect": [42, 43, 45], "reformat": 45, "regard": 26, "regardless": [17, 24, 38], "regen": 11, "regener": [2, 11], "regest": 113, "regev": 113, "region": [6, 13, 42, 43, 45, 46, 47, 50, 52, 53, 54, 59, 62, 69, 73, 77, 78, 82, 86, 99, 103, 113, 119, 125, 126, 127, 128, 129, 130, 132], "region_0": 126, "regist": [0, 6, 7, 11, 19, 34, 42, 47, 51, 52, 54, 59, 62, 63, 65, 69, 71, 72, 74, 76, 77, 78, 80, 81, 95, 103, 113, 116, 123, 125, 126, 127, 129, 130], "registered_atla": 75, "registered_atlas_original_orient": 75, "registered_hemispher": 75, "registr": [0, 2, 5, 11, 13, 15, 16, 24, 26, 34, 40, 42, 43, 45, 47, 54, 55, 62, 63, 65, 67, 68, 69, 70, 75, 77, 88, 113, 117, 118, 119, 123, 125, 126, 131], "regul": 113, "regularli": 41, "reinforc": 113, "reingrub": 112, "reiten": 113, "reject": [67, 92, 95], "rel": [5, 82, 106, 128], "relat": [3, 11, 24, 44, 55, 113], "relationship": [7, 129], "relax": 25, "releas": [11, 15, 16, 17, 22, 23, 24, 27, 32, 35, 39, 40, 42, 45, 65, 100, 105, 106, 116], "relev": [3, 11, 14, 23, 44, 45, 51], "reli": [3, 11, 16, 24, 25, 43, 71, 85, 90, 102, 106], "reliabl": [0, 128], "reload": [53, 125, 126], "reloc": [17, 40], "remain": [0, 14, 16, 23], "rembado": 113, "rememb": [27, 70], "remot": [49, 70], "remov": [1, 10, 16, 24, 27, 37, 38, 39, 43, 60, 62, 86, 128], "renam": [11, 14, 15, 16, 17, 37, 38, 40, 53, 116, 125, 126], "render": [0, 23, 27, 51, 78, 80, 81, 84, 86, 102, 120], "reopen": 42, "reorganis": [15, 16], "reorient": [54, 66, 69, 75, 128], "repeat": [28, 45, 64, 97, 99, 126, 128], "repetit": 28, "replac": [10, 15, 16, 27, 37, 40, 43, 45, 105], "repli": 37, "repo": [23, 24, 28, 41, 42, 45], "repo_root": 27, "report": [14, 28, 32, 44, 52, 56, 65, 69, 79, 95, 111, 113], "repositori": [10, 15, 19, 20, 23, 24, 25, 26, 27, 29, 32, 34, 43, 44, 45, 49, 78, 79, 84, 86, 103], "repres": [3, 11, 22, 45, 66, 80, 82, 113], "represent": 113, "reproduc": [0, 128], "repurpos": 27, "request": [26, 28, 45, 56], "requir": [0, 3, 12, 13, 20, 21, 23, 27, 28, 29, 30, 32, 37, 45, 49, 53, 55, 62, 65, 68, 69, 79, 85, 99, 113, 117, 125, 126, 129], "res_um": 45, "resampl": [55, 59, 76], "research": [0, 2, 3, 11, 23, 26, 47, 52, 65, 69, 78, 84, 87, 113], "reserv": [38, 40], "reset": [54, 94, 98], "resid": 28, "resnet": [61, 92, 98, 99, 100], "resnet50_tv": 92, "resolut": [0, 3, 25, 45, 46, 47, 49, 59, 63, 69, 70, 71, 72, 75, 76, 77, 107, 113, 117, 127, 128, 129, 130, 131], "resolv": [25, 101], "reson": [2, 11, 47], "resort": 7, "resourc": [24, 45, 62, 72], "respect": [28, 40, 41, 45, 50, 53, 82, 128], "respons": [5, 24, 113], "restivo": 113, "restnet50_tv": 93, "restrict": 76, "restructur": [11, 13, 14, 15], "result": [0, 2, 6, 8, 9, 14, 23, 27, 47, 51, 53, 62, 69, 70, 72, 73, 76, 77, 86, 97, 104, 116, 117, 121, 127, 128, 129, 131], "retain": [8, 11, 14, 27, 37, 40, 68], "retir": 13, "retract": 127, "retrain": [19, 63, 65, 87, 90, 96, 100, 119, 121, 123], "retri": 89, "retriev": 28, "retro": 113, "retrograd": [113, 129], "retrospleni": [6, 59, 113, 115, 119, 120], "return": [28, 53, 56, 104], "reus": [15, 99, 128], "reusabl": [45, 113], "reveal": 113, "review": [23, 101, 113], "revisit": 41, "rewritten": 3, "rgb_triplet": 45, "rheinisch": 113, "rhp": 51, "rich": [0, 86, 113], "rigg": 113, "right": [2, 13, 14, 16, 39, 49, 50, 51, 54, 55, 59, 72, 74, 85, 94, 95, 105, 121, 122, 124, 125, 126, 127, 128, 130, 131, 132], "right_cell_count": [6, 59, 115], "right_cells_per_mm3": [59, 115], "right_volume_mm3": [59, 115], "rippl": 113, "risk": [76, 128], "ritola": 113, "ritoux": 113, "rivalan": 113, "rna": 113, "roadmap": [7, 24, 35, 43], "roat": 112, "rob": 112, "robacha": 113, "robert": [8, 11, 53, 112], "roberto": 112, "robertodf": 112, "robertson": 113, "robkozol": 112, "robust": 42, "roddi": 112, "rodent": [46, 113], "rohr": 113, "roi": 43, "role": [13, 113], "roll": [4, 11, 30, 39], "rollik": 113, "romanski": 113, "rong": 113, "rongxin": 113, "roossien": 113, "root": [45, 49, 113], "root_id": 49, "ross": 113, "rost": 113, "rotat": [5, 42, 54, 86], "roughli": [96, 99, 100, 128], "round": 34, "rousseau": [52, 65, 69, 87, 112, 113], "rout": [101, 113], "routin": 88, "row": [74, 124, 132], "rp84630": 113, "rsp": 51, "rspagl": 120, "rspd": 120, "rspv": 120, "rtx": [61, 89, 91], "ruben": [51, 56, 112], "rubin": 113, "rubinstein": 113, "ruff": [33, 113], "rule": [27, 28, 113], "ruler": 80, "run": [3, 4, 5, 6, 8, 9, 10, 11, 14, 16, 17, 19, 23, 24, 25, 26, 29, 30, 32, 33, 38, 39, 45, 48, 56, 59, 61, 64, 66, 68, 69, 70, 71, 72, 74, 76, 79, 83, 86, 88, 89, 90, 93, 97, 99, 101, 105, 106, 116, 118, 121, 122, 125, 126, 127, 129, 130, 131], "run_train": 92, "runnabl": 24, "russo": 113, "s1": 113, "s41598": [52, 65, 69, 113], "saarah": 112, "saarah815": 112, "sacha": [12, 112], "sacha091": 112, "sacrific": [24, 129], "safe": [5, 79, 89], "sagitt": [51, 82, 85, 118, 128], "sai": 25, "saima": [11, 112], "saimaabdus19": 112, "sainsburi": [0, 20, 21, 111, 112], "sal": [55, 107], "saldanha": 113, "saleem": 113, "sam": 112, "samclothi": 112, "same": [1, 7, 9, 10, 11, 16, 17, 22, 24, 25, 28, 30, 32, 38, 45, 47, 50, 53, 55, 59, 66, 72, 75, 80, 83, 85, 86, 92, 104, 105, 106, 107, 115, 116, 117, 118, 122, 125, 126, 130], "sampath": 113, "sampl": [13, 35, 43, 47, 54, 69, 70, 77, 98, 99, 113, 115, 121, 122, 123, 125, 127, 130, 131], "sample_spac": 125, "samuel": 112, "san": 113, "sanchez": 113, "sar": 107, "sara": [112, 129], "sarabdjitsingh": 113, "saramedero": 112, "satisfactori": 99, "save": [5, 6, 27, 42, 45, 50, 53, 59, 60, 61, 62, 66, 72, 73, 75, 76, 84, 86, 93, 94, 97, 98, 99, 101, 118, 121, 122, 125, 126, 127, 128, 129, 130], "save_ani": 57, "save_cel": 92, "save_progress": 92, "saved_training_data": 92, "saw": [27, 86], "sbalzarini": 113, "sc": [44, 45, 55, 66, 73], "scalar": 51, "scale": [30, 42, 59, 113, 132], "scanner": 63, "scene": [5, 14, 17, 51, 78, 81, 84, 85, 86, 120, 127], "schaefer": 113, "schlegel": 113, "schmid": 113, "schmitz": 113, "schneggenburg": 113, "schneider": 113, "schoenherr": 113, "scholar": 113, "scholler": [74, 112, 113], "schubert": 113, "schuler": 113, "schwarz": 113, "schweihoff": 113, "scienc": [111, 113], "scientif": [52, 65, 69, 84, 110, 113], "scientifica": 111, "scientist": 0, "scipi": 30, "scott": 113, "scratch": [91, 97, 98], "screen": [56, 74, 105, 125, 126], "screenshot": [5, 81, 82], "screenshot_transparent_background": 86, "screenshots_fold": 86, "script": [1, 5, 11, 13, 15, 26, 37, 38, 43, 88, 101], "scroll": [45, 54, 121, 124, 131, 132], "scrollwheel": 54, "sdiebolt": 112, "sean": 112, "seankmartin": 112, "search": [6, 113, 121, 124, 125, 126, 130, 131, 132], "searchbox": [121, 124, 125, 126, 130, 131, 132], "sebastian": [112, 113], "seblamm": 112, "sec": 89, "second": [22, 24, 28, 55, 61, 74, 75, 107, 127, 128, 131], "secondari": [24, 103, 117, 118], "secret": 32, "section": [5, 11, 12, 20, 21, 23, 25, 28, 34, 38, 42, 45, 47, 51, 54, 55, 56, 64, 73, 85, 87, 90, 94, 95, 96, 99, 105, 113, 116, 118, 119, 124, 129, 130, 131, 132], "see": [5, 6, 9, 11, 13, 14, 16, 17, 23, 24, 25, 27, 33, 38, 39, 42, 45, 47, 48, 51, 52, 53, 54, 56, 58, 59, 62, 63, 64, 66, 70, 72, 73, 80, 82, 86, 87, 88, 89, 90, 91, 92, 95, 97, 98, 99, 100, 105, 106, 107, 113, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 130, 131], "seek": 113, "seen": [2, 24], "segment": [1, 10, 11, 17, 19, 24, 40, 42, 43, 54, 65, 69, 75, 87, 101, 113, 119, 123, 127, 129], "select": [17, 25, 27, 53, 54, 59, 73, 94, 95, 97, 98, 102, 103, 106, 113, 121, 122, 124, 125, 126, 128, 129, 130, 131, 132], "self": [19, 113], "semant": 33, "semi": 113, "send": [23, 66, 86], "sensit": 56, "sensori": 113, "sensorimotor": 113, "sentenc": 56, "separ": [11, 13, 15, 16, 24, 32, 37, 42, 43, 45, 64, 72, 81, 99, 105, 113, 128, 131], "sepidak": 112, "sepiedeh": [112, 118], "septa": [3, 11], "seq": 113, "sequenc": [13, 39, 55, 57, 113], "seri": [11, 14, 17, 53, 57, 63, 92, 113, 114, 124, 132], "serial": [11, 12, 20, 21, 47, 63, 87, 92, 99, 100, 127, 129], "serial2p": 100, "serv": [24, 124, 129, 132], "server": 91, "session": [64, 94, 98], "set": [0, 5, 7, 11, 17, 22, 25, 27, 28, 32, 33, 45, 49, 51, 55, 56, 61, 64, 69, 72, 74, 76, 80, 82, 83, 84, 85, 86, 88, 91, 94, 97, 101, 105, 107, 116, 117, 120, 121, 122, 126, 127, 128, 131], "set_titl": 55, "set_xlabel": 55, "set_ylabel": 55, "setup": [14, 16, 25, 40, 108], "setuptool": 33, "setuptools_scm": 33, "sever": [0, 4, 14, 17, 24, 25, 27, 30, 80, 82, 126], "sevier": 113, "sexual": 113, "sfmig": 112, "shader": 5, "shader_styl": 120, "shah": 113, "shahzeidi": 113, "shakarji": 113, "shamash": 112, "shang": 113, "shank": 127, "shao": 113, "shape": [42, 46, 50, 55, 85, 113], "sharcq": 113, "share": [86, 99, 105, 110, 113, 118], "sheet": [11, 12, 113], "shell": 64, "shelter": 113, "shevtsova": 113, "shift": [82, 128], "shinozaki": 113, "ship": [29, 38, 40], "shock": 113, "short": [82, 132], "shorten": [45, 55], "should": [1, 4, 5, 7, 10, 11, 13, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 32, 37, 38, 39, 40, 43, 45, 49, 50, 51, 56, 60, 63, 64, 67, 70, 73, 77, 80, 82, 83, 84, 85, 86, 88, 94, 95, 98, 99, 100, 101, 105, 106, 117, 118, 119, 121, 128, 129, 132], "shouldn": [61, 105], "show": [4, 10, 22, 40, 51, 54, 55, 56, 73, 83, 84, 86, 105, 107, 118, 119, 125, 127, 128], "show_atlas": 49, "shown": 51, "shvareva": 113, "side": [49, 51, 54, 73, 85, 95, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "sidebar": [54, 95], "siegl": 113, "sigma": [60, 62, 76], "sign": 23, "signal": [24, 30, 62, 63, 67, 73, 92, 94, 95, 97, 113, 118, 119, 121, 122, 127, 129], "signal_arrai": [57, 92], "signal_channel_imag": 62, "signal_imag": 92, "signal_image_directori": 92, "signific": [0, 9, 16, 68], "significantli": 23, "silhouett": 82, "silicon": [79, 121, 123, 125, 126], "silva": 113, "silvestri": 113, "simaobolota": 112, "similar": [2, 3, 8, 12, 23, 31, 45, 47, 49, 75, 76, 113, 115], "similarli": [11, 12, 37, 39, 67, 74], "simpl": [0, 23, 45, 51, 53, 79, 80, 86, 124, 132], "simpleitk": [53, 129], "simpler": [53, 92, 99], "simplest": [28, 68, 82], "simpli": [12, 15, 27, 38, 39, 49, 55, 66, 77, 102, 105, 125, 131], "simplic": [24, 49, 131], "simplifi": [9, 16, 42, 43], "simultan": 29, "sim\u00e3o": 112, "sinc": [16, 25, 28, 127], "singl": [1, 4, 5, 8, 10, 11, 14, 16, 17, 25, 27, 34, 37, 39, 40, 43, 47, 51, 53, 59, 63, 67, 73, 74, 88, 95, 99, 113, 117, 125, 131], "siquier": 113, "sirmpilatz": 112, "sit": 113, "site": [52, 120, 126, 127], "situat": [44, 55], "siu": 113, "six": 42, "size": [9, 42, 43, 60, 61, 62, 71, 72, 73, 75, 76, 90, 91, 94, 95, 96, 98, 99, 103, 108, 118, 119, 121, 126, 128, 131], "sju_cavefish_2um": [8, 46, 47], "sj\u00f6str\u00f6m": 113, "skill": [0, 99], "skip": [30, 72, 76, 84, 105], "skull": [127, 129], "slagt": 113, "slice": [22, 30, 55, 82, 107, 113, 126], "slice2volum": 113, "slide": [19, 20, 21, 63], "slider": [45, 126, 128, 130, 131], "slightli": [5, 9, 15, 16, 28, 47, 83, 124, 132], "slope": 9, "slow": [83, 97], "small": [24, 30, 33, 42, 92, 97, 99, 105, 119, 121, 122, 130], "smaller": 76, "smallest": 76, "smart": 113, "smc": 129, "smi": 89, "smith": 113, "smooth": [46, 62, 76, 125], "smoothli": 45, "sniff": 113, "snr": 118, "snt": 113, "so": [2, 4, 7, 10, 11, 14, 16, 17, 23, 25, 27, 28, 37, 38, 39, 42, 45, 49, 52, 54, 56, 63, 68, 70, 73, 84, 85, 86, 89, 99, 100, 101, 105, 121, 122, 124, 125, 126, 128, 131, 132], "sobolewski": 112, "social": [11, 12], "sofia": 112, "softwar": [0, 3, 5, 8, 11, 12, 16, 23, 24, 27, 28, 35, 42, 44, 45, 46, 47, 52, 54, 56, 65, 69, 72, 75, 84, 85, 87, 90, 92, 97, 98, 99, 101, 105, 106, 110, 113, 118], "solid": [43, 91, 126], "soltesz": 113, "soltwedel": 113, "solvent": 47, "soma": [5, 60, 94, 103, 104], "soma_diamet": [30, 92], "soma_radiu": 104, "soma_spread_factor": 92, "somatosensori": [3, 11], "somatostatin": 113, "some": [5, 7, 16, 23, 27, 28, 31, 34, 39, 40, 42, 43, 45, 46, 47, 49, 51, 54, 56, 58, 59, 62, 64, 70, 71, 73, 75, 77, 78, 79, 80, 84, 85, 99, 101, 103, 104, 105, 106, 107, 118, 119, 121, 122, 130], "someon": [23, 24, 106], "someth": [2, 8, 73, 89, 91, 100, 105, 115, 117, 120], "sometim": [2, 11, 23, 32, 45, 47, 49, 55], "somewhat": [17, 106], "somewher": 16, "song": 113, "soon": [14, 23, 29, 63], "sophist": [0, 86], "sort": [33, 72, 85], "sound": 113, "sourc": [0, 10, 11, 16, 23, 25, 27, 32, 39, 46, 49, 50, 52, 55, 56, 65, 69, 85, 89, 110, 112, 113, 128], "source_origin": 55, "source_spac": 55, "space": [5, 6, 7, 11, 19, 22, 24, 39, 42, 45, 46, 49, 53, 54, 56, 59, 63, 64, 65, 66, 67, 69, 72, 73, 74, 75, 76, 84, 94, 95, 98, 99, 101, 108, 113, 115, 117, 118, 120, 125, 126, 127, 129, 130], "spare": [62, 72], "spars": 42, "spatial": [34, 113, 126], "speak": 91, "speci": [0, 8, 11, 12, 24, 26, 45, 46, 47, 49, 72, 103, 113], "special": [82, 113], "specialist": 110, "specif": [3, 11, 23, 24, 26, 39, 42, 47, 54, 55, 56, 57, 58, 62, 81, 82, 84, 93, 103, 105, 110, 113, 129, 131], "specifi": [28, 37, 45, 51, 55, 61, 62, 67, 72, 82, 86, 93, 94, 98, 99, 101, 103, 107], "specimen": [34, 113], "spectacular": 86, "spectrum": 113, "sped": 5, "speed": [5, 9, 14, 17, 23, 30, 88, 90, 94, 98, 104, 113, 117, 124, 127, 131], "spent": 0, "sphere": 126, "spheric": 30, "sphinx": 22, "spier": 113, "spike": 113, "spin": 91, "spinal": [46, 113, 128], "spine": 113, "spline": [125, 127], "split": [11, 13, 60, 94, 96, 99, 100, 116], "spontan": 113, "spot": 118, "spragu": 46, "spread": [27, 60, 94], "squar": [30, 128, 132], "squash": 23, "ss": 51, "ssd": [91, 116], "sse4": 89, "staat": 113, "stabl": [13, 16, 17, 24, 27, 40, 106, 113], "stack": [22, 24, 45, 54, 55, 85, 107, 127, 129], "stage": [11, 15, 30, 33, 47, 90, 96], "stain": [5, 63, 73], "stand": [10, 15, 82], "standalon": [1, 10, 11, 37, 56, 57], "standard": [22, 23, 49, 51, 60, 65, 69, 75, 92, 94, 101, 127, 129], "standardis": [42, 47], "stansbi": 112, "stark": 113, "start": [7, 25, 39, 45, 47, 51, 55, 59, 62, 69, 70, 76, 91, 94, 97, 100, 105, 110, 116, 117, 125, 127, 128, 129, 130], "start_plan": 92, "state": [25, 91, 113], "statement": [15, 38, 40, 62], "static": [28, 33], "statist": [34, 115], "stddev": 30, "stdout": [28, 56], "stegiopast": 112, "steinmetz": 113, "stempel": 113, "step": [0, 2, 7, 8, 11, 12, 13, 14, 17, 24, 25, 26, 28, 30, 38, 39, 43, 55, 61, 69, 76, 78, 82, 84, 85, 90, 91, 96, 97, 99, 100, 117, 126, 128, 129, 130], "stephen": 112, "stephenlenzi": 112, "still": [13, 14, 15, 17, 23, 25, 28, 37, 39, 40, 42, 45, 83, 85, 89, 90, 91, 127, 128], "stolz": 113, "stop": 105, "storag": [45, 64, 91, 98, 99], "store": [11, 14, 15, 24, 28, 30, 31, 39, 49, 63, 67, 84, 98, 99, 117], "stp": [46, 47], "stpt": 46, "str": 51, "straight": 125, "straightforward": [7, 11], "strategi": 113, "stream": [16, 23, 113], "stream_executor": 89, "streamlin": [0, 28, 45, 80, 81, 82, 113], "street": 113, "striatal": 113, "striatum": 113, "string": [28, 45, 49, 51, 72, 107], "strom": [65, 87, 113], "strong": [63, 113], "strongli": [38, 39, 79, 128], "structur": [0, 11, 12, 19, 22, 23, 25, 27, 33, 37, 38, 40, 45, 46, 50, 53, 54, 66, 68, 84, 103, 113, 123], "structure_area_abbrev": 103, "structure_detect": 30, "structure_from_coord": 49, "structure_id": 45, "structure_id_path": [45, 49], "structure_nam": [6, 59, 115], "structure_templ": 45, "stub": 33, "stuck": [76, 91], "student": [3, 20, 21], "studi": [2, 3, 8, 11, 12, 26, 47, 113], "studio": 89, "stuff": 73, "stumpenhorst": 113, "style": 56, "st\u00f6ber": 113, "suarez": 11, "sub": [72, 128], "subclass": 28, "subcort": 113, "subdirectori": [50, 66, 99], "subfold": [24, 125], "submit": [23, 45, 113], "submodul": [1, 10, 11, 24, 25, 37, 38, 40, 45, 58, 87], "subnetwork": 113, "subsequ": [85, 104], "subspac": 113, "substitut": 0, "substrat": 113, "subtl": 28, "subvolum": [42, 43], "success": [25, 28, 29, 121, 125, 126], "successfulli": [39, 125, 131], "successor": [17, 40], "suckert": 113, "sudharshan": 113, "suffic": 28, "suffici": [47, 51, 55, 63, 129], "suggest": [41, 90, 99], "suit": [0, 11, 12, 17, 23, 27, 29, 40, 45, 56, 101, 116, 127, 129], "suitabl": 29, "sullivan": 113, "summari": [6, 66, 115, 125, 130], "summaris": [125, 126], "sun": 113, "sundar": 113, "super": 113, "superior": [55, 74, 85, 107, 128], "supervis": 113, "suppli": [38, 61, 63, 75, 92, 94, 98, 99, 118], "support": [0, 7, 9, 23, 42, 43, 45, 47, 51, 56, 57, 59, 63, 69, 70, 78, 79, 80, 81, 82, 83, 85, 86, 89, 92, 109], "suppos": 25, "supraspin": 113, "sure": [0, 3, 8, 23, 26, 27, 33, 38, 44, 59, 67, 70, 73, 83, 88, 91, 98, 99, 117, 125, 126, 127, 129], "surfac": [3, 8, 11, 45, 46, 118, 119, 125, 127], "surround": [16, 129], "survei": 113, "surviv": [3, 11], "suscept": 113, "sustain": 14, "su\u00e1rez": 112, "svahn": 113, "svara": 113, "svg": [27, 86], "swap": [55, 84], "swc": [5, 80, 84, 102], "switch": [4, 9, 37, 105, 113, 128], "symbol": [119, 125], "synaps": 113, "synapt": 113, "synchrotron": 113, "syntax": [28, 55, 62], "synthet": 98, "sysadmin": 91, "system": [2, 3, 7, 9, 11, 51, 64, 70, 84, 85, 91, 105, 106, 113, 129], "systemat": 113, "szabo": 113, "szelenyi": 113, "s\u00f8rensen": 113, "s\u00fcrmeli": 113, "t": [3, 6, 13, 14, 16, 23, 24, 25, 27, 29, 37, 39, 40, 42, 43, 44, 45, 46, 50, 51, 52, 53, 56, 60, 61, 62, 64, 65, 69, 70, 73, 76, 78, 83, 84, 85, 86, 87, 92, 94, 95, 98, 99, 101, 105, 113, 116, 118, 125, 126, 128], "t2": [46, 47], "ta": 113, "tabl": [26, 130], "tacto": 113, "tadpol": 128, "tafazoli": 113, "tag": [13, 25, 32, 33, 39, 44, 45], "tai": 113, "tail": 113, "takatoh": 113, "take": [4, 5, 6, 7, 11, 13, 14, 15, 16, 17, 23, 24, 27, 28, 29, 30, 44, 45, 51, 53, 65, 73, 77, 82, 84, 86, 91, 95, 96, 97, 98, 99, 100, 115, 116, 117, 118, 119, 121, 124, 125, 126, 128], "taken": [0, 24, 73, 117, 129], "tak\u00e1c": 113, "talk": [0, 113], "tamura": 113, "tan": 113, "tantirigama": 113, "tar": [26, 45, 100], "target": [2, 25, 55, 85, 99, 113, 128, 129], "target_origin": 55, "target_spac": 55, "task": [0, 30, 43, 47], "tatarnikov": [11, 21, 112], "taylor": 113, "tb": 92, "teach": 113, "team": [2, 3, 8, 12, 23, 26, 44, 112], "technic": [0, 43], "techniqu": [0, 12, 99], "technologi": 24, "tectum": [2, 83], "tegment": 113, "teichert": 113, "telecephalon": 45, "telencephal": 113, "telencephalon": [45, 132], "tell": [28, 56, 105], "temp": [45, 89], "templat": [43, 45, 47, 50, 69, 123], "tempor": 113, "tensorboard": [98, 99], "tensorflow": [23, 38, 42], "term": [10, 17, 39, 43, 76], "termin": [3, 8, 56, 64, 67, 89, 91, 105, 118, 122, 124], "tersteg": 113, "test": [4, 11, 22, 23, 24, 25, 31, 42, 89, 98, 99, 100, 116, 118], "test_and_deploi": [25, 32], "test_brain": [115, 117, 118, 119, 120], "test_fract": 92, "tex": 56, "text": [24, 27, 28, 56, 62, 63, 72, 82, 125, 126], "text_fmt": 28, "textcit": 28, "th": 51, "thalamo": 113, "thalamu": [6, 8, 59, 113, 115, 119], "than": [1, 2, 3, 5, 7, 11, 13, 15, 16, 17, 24, 25, 27, 30, 37, 38, 40, 43, 45, 47, 51, 56, 63, 71, 99, 100, 105, 117, 118, 128], "thank": [5, 74, 118], "the_path": 63, "thei": [0, 1, 13, 16, 17, 22, 23, 25, 26, 28, 29, 30, 40, 43, 45, 50, 51, 54, 63, 66, 71, 73, 75, 80, 84, 85, 86, 88, 89, 97, 98, 99, 101, 128, 132], "them": [5, 16, 24, 26, 27, 28, 33, 40, 44, 45, 46, 47, 48, 53, 56, 57, 59, 62, 63, 84, 86, 89, 97, 125, 132], "theme": 22, "themselv": [16, 24, 27, 28, 50], "theoret": 56, "theori": 98, "therefor": [24, 127, 129], "thi": [0, 1, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 37, 38, 39, 40, 42, 43, 44, 45, 46, 47, 49, 50, 51, 53, 54, 55, 56, 59, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 78, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 93, 94, 95, 96, 97, 98, 99, 100, 101, 103, 104, 105, 107, 113, 115, 116, 117, 118, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "thick": 51, "thielert": 113, "thin": 87, "thing": [17, 28, 53, 59, 71, 82, 106, 128], "think": [23, 26, 44, 89, 91], "third": [22, 53, 55, 61, 75, 89, 90, 107, 128], "thirouin": 113, "thompson": 113, "thorac": 113, "thorn": 113, "thoroughli": [127, 129], "those": [5, 12, 15, 25, 28, 29, 45, 46, 47, 55, 56, 106, 119, 132], "though": [23, 28, 49, 56, 86, 105], "thousand": 91, "three": [11, 13, 24, 25, 27, 30, 42, 49, 51, 59, 69, 73, 85, 86, 87, 96, 107, 110, 113, 119, 125, 128], "threshold": [60, 94, 129], "through": [1, 2, 4, 7, 10, 13, 16, 24, 25, 27, 37, 40, 43, 45, 49, 51, 53, 54, 55, 92, 97, 116, 123, 131, 132], "throughout": 6, "throughput": 0, "thu": [0, 25], "thumb": 27, "thurber": 113, "tiago": [51, 56, 112], "tick": 94, "tierno": 113, "tif": [57, 84, 92, 128], "tiff": [45, 46, 50, 53, 57, 59, 63, 66, 67, 75, 84, 92, 95], "tifffil": 92, "tiffil": 84, "tile": 30, "tillmann": 113, "tilt": 128, "time": [5, 13, 14, 16, 23, 27, 29, 30, 33, 40, 45, 49, 71, 73, 76, 77, 82, 83, 93, 98, 99, 103, 105, 113, 116, 117, 118, 124, 125, 126, 127, 129], "tip": 127, "tissu": [34, 63, 71, 113, 127, 128, 129], "titan": [61, 89], "titl": [25, 28, 51, 56, 83, 86], "tmp__": 29, "to_nii": 57, "to_target_shap": 55, "to_tiff": 57, "todai": [11, 17], "todorov": 113, "togeth": [3, 8, 14, 15, 17, 24, 55, 87, 113, 117], "toggl": [54, 56, 77, 119, 128, 131, 132], "tomer": 113, "toml": [27, 33], "tomographi": [100, 127, 129], "toni": 113, "too": [25, 28, 84, 85], "tool": [0, 1, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 23, 25, 27, 29, 32, 34, 36, 38, 40, 41, 42, 43, 44, 45, 47, 50, 53, 57, 58, 59, 68, 69, 74, 83, 84, 85, 92, 93, 99, 107, 110, 113, 118, 122, 123, 127, 128, 129, 130], "toolbox": 113, "toolkit": 113, "top": [11, 16, 17, 27, 28, 40, 45, 73, 74, 94, 95, 101, 107, 121, 122, 124, 125, 126, 128, 130, 131, 132], "topmost": 128, "topograph": [3, 11], "torch": 91, "total": [73, 117], "total_cel": [59, 115], "total_memori": 91, "total_volume_mm3": [59, 115], "totaro": 113, "toubal": 113, "touch": [2, 3, 8, 12, 23, 41, 90, 91, 105, 112, 118, 127], "tour": 19, "toward": [0, 82, 85, 128], "tozzi": 113, "trace": [0, 27, 53, 113, 123, 125], "tracer": 113, "track": [53, 54, 55, 61, 113, 123, 126], "track_0": 125, "track_0_fit": 125, "track_nam": 125, "tractographi": 80, "train": [5, 9, 18, 61, 63, 65, 87, 90, 94, 95, 118, 119, 122], "train_yml": 92, "trained_model": 92, "trained_network": 122, "training_output": 100, "training_yml": 92, "trajectori": [34, 53, 113], "tran": 113, "transact": [113, 129], "transcriptom": 113, "transfer": [44, 47], "transform": [6, 11, 55, 58, 62, 65, 66, 67, 69, 73, 75, 84, 85, 113, 128, 130], "transformation_matrix": 55, "transformation_matrix_to": 55, "transgen": 45, "transit": 40, "transmiss": 113, "transmit": 113, "transpar": 86, "transport": [113, 129], "traumat": 113, "treat": 62, "tree": [16, 25, 49, 113, 132], "treelib": 49, "treiber": 113, "tremblai": 113, "trend": 113, "tri": [25, 45], "triesch": 113, "trivial": [25, 85], "troi": [51, 56, 112], "troidl": 113, "troubl": [73, 90, 105], "troubleshoot": [44, 66, 69, 91, 94], "troymargri": 112, "true": [49, 55, 72, 83, 91, 92], "try": [23, 32, 39, 45, 47, 71, 74, 89, 105, 116, 120, 130], "tsai": 113, "tsitoura": [52, 65, 69, 87, 112, 113], "tsoi": 113, "tsoulfa": 113, "tunnel": [3, 11], "tupl": 51, "turn": 51, "tutori": [2, 3, 6, 8, 12, 59, 110, 118, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "tweak": [51, 70], "twice": [30, 56, 73], "twine_api_kei": 32, "twitter": 26, "two": [3, 7, 9, 10, 11, 12, 13, 15, 17, 20, 21, 28, 30, 37, 39, 40, 45, 47, 51, 54, 59, 63, 64, 66, 70, 72, 74, 83, 84, 85, 86, 87, 89, 90, 92, 95, 96, 97, 99, 100, 104, 105, 118, 121, 122, 127, 128, 130, 131], "txt": [50, 56], "type": [0, 28, 30, 33, 45, 49, 54, 56, 63, 67, 70, 73, 78, 81, 89, 92, 99, 102, 105, 113, 119], "typic": [25, 27, 29, 31, 50, 54, 63, 73, 99], "tyson": [11, 20, 21, 23, 46, 51, 52, 56, 65, 69, 78, 87, 112, 113, 114], "u": [7, 8, 11, 12, 14, 16, 17, 25, 27, 28, 34, 41, 44, 52, 69, 78, 79, 113], "uchida": 113, "uchishiba": 113, "ucl": [113, 114], "ui": 25, "uint64": 30, "uint8": 30, "ulimit": 64, "um": [60, 61, 94], "unabl": 25, "unam": 46, "unam_axolotl_40um": [2, 46, 47], "unavail": 25, "uncorr": 89, "uncoupl": 113, "und": 113, "under": [7, 10, 11, 23, 27, 28, 37, 38, 40, 51, 57, 71, 116], "undergo": [16, 27], "undergon": [27, 37, 38, 68], "underli": [2, 11, 49, 113], "underpin": 28, "understand": [8, 11, 43, 45, 66, 71, 89, 90, 96, 113, 129], "undertak": 84, "underwai": [11, 13, 16], "undesir": 10, "unfold": 113, "unfortun": [39, 106], "unifi": [0, 46, 113], "uninstal": [1, 4, 10, 13, 15, 37, 38, 39, 59, 70, 121, 124, 125, 126, 130, 131, 132], "uniqu": [28, 46, 47, 50, 73], "unique_repositories_from_tool": 28, "unirep": 113, "unit": [25, 32, 85, 112], "uniti": 34, "univers": [0, 20, 21, 113], "universit\u00e4t": 113, "universit\u00e4tsbibliothek": 113, "unknown": 46, "unless": [23, 24, 45, 62, 89], "unlik": [47, 105], "unmaintain": 39, "unnecessari": [11, 16], "unravel": 129, "unrecognis": 64, "unrel": 17, "unsupport": 80, "unsur": 23, "unteth": 113, "until": [25, 97, 99], "unus": [56, 62, 72], "unusu": [2, 11], "unzip": 118, "up": [5, 14, 15, 16, 23, 24, 25, 26, 27, 29, 30, 32, 33, 34, 39, 40, 45, 49, 59, 60, 69, 70, 82, 83, 85, 86, 88, 89, 90, 94, 98, 101, 103, 104, 105, 116, 117, 121, 122, 129], "updat": [1, 4, 7, 10, 11, 12, 13, 14, 15, 17, 25, 26, 27, 36, 37, 42, 43, 48, 56, 68, 69, 89, 93, 122], "uperior": [118, 128], "upgrad": [1, 4, 5, 6, 9, 10, 27, 38, 68, 101, 116], "upload": [1, 25, 26, 27], "upon": [34, 106], "upper": [22, 55, 107], "upright": 45, "upward": 128, "url": [28, 56], "us": [0, 1, 4, 5, 7, 9, 10, 11, 13, 14, 15, 16, 17, 19, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 37, 39, 40, 42, 44, 45, 46, 47, 48, 52, 53, 54, 55, 58, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 75, 76, 77, 79, 80, 81, 82, 85, 86, 88, 89, 90, 93, 94, 95, 96, 98, 99, 101, 103, 104, 106, 107, 108, 113, 115, 116, 117, 118, 119, 120, 121, 122, 123, 124, 125, 126, 127, 128, 129, 130, 131, 132], "usabl": [24, 37], "usag": [0, 30, 52, 69, 78, 89, 130], "use_cach": 104, "user": [0, 2, 4, 6, 7, 10, 11, 12, 13, 14, 15, 16, 23, 25, 27, 28, 29, 31, 32, 34, 39, 40, 43, 44, 45, 46, 48, 56, 70, 74, 80, 116, 123, 127, 128], "usual": [5, 23, 24, 25, 26, 28, 41, 47, 71, 83, 89, 90, 92, 99, 107], "util": [1, 6, 11, 24, 27, 31, 42, 56, 59, 89, 92, 101, 130], "utilis": [17, 29, 68], "utput": 117, "v": [3, 11, 25, 52, 62, 65, 69, 72, 87, 113, 117], "v1": [13, 25, 27, 33, 37, 65, 113], "v22885": 127, "vaa": 113, "vale": 113, "valeria": 113, "valid": [26, 28, 55, 56, 69, 98, 99, 103], "valu": [25, 28, 46, 50, 51, 55, 71, 73, 76, 94, 98, 103, 113], "valuabl": [11, 12], "van": 113, "varga": 113, "vari": [0, 26, 38, 47, 63, 73, 106, 129], "variabl": [28, 42], "varieti": [24, 47], "variou": [2, 12, 20, 21, 27, 28, 45, 53, 57, 58, 77, 104, 117, 121, 129, 130], "vasculatur": 118, "vast": [0, 80, 103], "vasylieva": 112, "vazquez": 113, "ve": [15, 24, 42, 64, 74, 85, 86, 97, 104, 120, 125, 132], "vector": [51, 82], "vedo": [7, 11, 49, 80, 83, 84, 102, 104], "velasquez": 113, "velezmat": 112, "veloc": [29, 113], "ventral": [6, 45, 59, 113, 115], "venv": 101, "verbos": [62, 72], "vergara": [112, 113], "verhagen": 113, "veri": [4, 6, 11, 23, 42, 45, 47, 49, 71, 87, 91, 105, 117, 121, 122, 131, 132], "verifi": 39, "versa": 84, "version": [1, 3, 4, 7, 10, 11, 12, 15, 22, 23, 24, 25, 32, 34, 42, 45, 46, 48, 49, 50, 65, 72, 76, 79, 88, 89, 101, 105, 106, 116, 118, 124, 128, 130], "vertebr": 47, "vertic": [94, 95], "vessel": [119, 127, 129], "vestibular": 59, "vglut": 113, "vi": [45, 51], "via": [5, 23, 24, 26, 28, 37, 39, 40, 42, 43, 45, 51, 56, 113, 123, 128, 129], "vice": 84, "vid": 112, "video": [0, 34, 78, 79, 81, 82], "videomak": 86, "view": [2, 3, 8, 11, 12, 23, 32, 34, 38, 40, 48, 51, 54, 55, 67, 74, 77, 82, 86, 98, 99, 115, 119, 128], "viewer": [45, 86, 113, 125, 132], "viewup": 82, "vigji": 112, "viglion": 113, "viktor": 112, "viktorpm": 112, "viral": [0, 63], "virtual": [39, 40, 45, 101, 105, 113], "viru": 113, "visc": 49, "visc6a": 49, "visibl": [54, 68, 77, 128, 131], "vision": [14, 17, 113], "visit": 68, "visp": [83, 103], "visser": 112, "visual": [34, 45, 78, 81, 82, 83, 84, 86, 89, 102, 103, 104, 113, 123], "visualis": [2, 3, 7, 8, 11, 12, 15, 19, 20, 21, 24, 26, 38, 39, 42, 43, 45, 47, 51, 52, 54, 59, 65, 66, 69, 73, 83, 87, 110, 113, 115, 116, 117, 123, 124, 125, 127, 130], "vita": 59, "vmax": 51, "vmin": 51, "vogelstein": 113, "vohra": 113, "vol": [84, 129], "volatil": 89, "vole": [11, 46], "volum": [30, 34, 45, 51, 54, 55, 56, 65, 66, 72, 75, 80, 87, 113, 115, 126], "volumetr": [80, 84], "von": 113, "voxel": [30, 45, 49, 62, 71, 72, 73, 75, 76, 84, 85, 94, 95, 108, 118, 121, 128, 129, 130, 131], "voxel_s": 92, "vram": 91, "vtk": 83, "vu": 113, "vx": [25, 27], "v\u00e9lez": [52, 65, 69, 112, 113, 127], "w": [3, 8, 46, 51, 52, 56, 65, 69, 78, 87, 113], "wa": [0, 1, 5, 10, 11, 12, 13, 15, 17, 27, 28, 38, 42, 45, 61, 63, 65, 66, 68, 86, 89, 99, 100, 106, 107, 112, 113, 116, 118, 127, 129], "wagner": 113, "wai": [1, 6, 7, 10, 11, 22, 25, 34, 39, 40, 42, 45, 46, 53, 55, 59, 67, 70, 71, 83, 85, 86, 92, 99, 105, 117], "wait": [13, 14, 89, 98, 99], "walker": 113, "wall": 105, "wang": 113, "want": [7, 13, 14, 16, 25, 26, 27, 28, 37, 38, 39, 40, 45, 47, 49, 52, 54, 55, 56, 62, 64, 68, 70, 73, 77, 79, 83, 84, 86, 88, 92, 93, 97, 98, 100, 101, 105, 116, 117, 118, 122, 125, 126, 127, 129], "warn": [38, 56, 86, 89], "warp": [54, 66, 73, 75, 77, 113], "wash": [127, 129], "wasp": 34, "watch": 122, "watt": 113, "waxholm": [43, 46], "we": [0, 4, 5, 6, 7, 9, 11, 13, 14, 15, 16, 17, 20, 21, 22, 23, 24, 25, 26, 27, 28, 32, 33, 34, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 53, 55, 56, 59, 63, 65, 66, 70, 79, 80, 83, 86, 88, 90, 91, 92, 99, 100, 101, 103, 105, 106, 107, 110, 113, 116, 117, 118, 121, 124, 127, 128, 129, 130, 131], "weakli": 113, "wealth": 0, "web": [86, 113, 129], "weber": 113, "webpag": 56, "websit": [22, 23, 25, 26, 27, 34, 45, 86, 89], "wee": 113, "week": [23, 46], "weekli": [23, 24], "weight": [47, 61, 76, 98, 99], "weiler": 113, "weinholtz": 113, "welcom": [7, 23, 41, 44, 51], "well": [11, 12, 16, 23, 24, 27, 28, 29, 40, 45, 61, 71, 73, 82, 90, 91, 95, 119], "wellcom": [0, 20, 21, 111, 112], "wen": 113, "went": [5, 45], "were": [1, 5, 7, 9, 11, 13, 14, 15, 34, 37, 38, 45, 63, 85, 131], "west": 113, "what": [2, 8, 24, 27, 42, 43, 44, 49, 63, 64, 68, 70, 84, 85, 86, 89, 90, 92, 98, 99, 105, 110, 118, 119, 125, 126], "whatev": [67, 105], "when": [0, 5, 9, 11, 13, 15, 16, 17, 22, 25, 27, 28, 30, 37, 38, 39, 40, 45, 48, 51, 54, 55, 56, 59, 66, 70, 73, 75, 78, 82, 83, 84, 86, 93, 98, 101, 104, 106, 107, 117, 119, 121, 122, 127, 128, 130], "whenev": [25, 45, 105], "where": [0, 16, 17, 23, 24, 25, 26, 27, 30, 32, 33, 41, 45, 51, 53, 56, 60, 73, 85, 86, 92, 93, 94, 116, 118, 125, 126, 127, 129], "whether": [23, 38, 56, 60], "which": [0, 2, 3, 4, 5, 6, 9, 10, 11, 13, 14, 15, 16, 17, 22, 24, 25, 27, 28, 29, 30, 31, 33, 38, 39, 40, 43, 44, 45, 47, 48, 50, 51, 53, 56, 57, 62, 68, 69, 72, 75, 76, 78, 82, 84, 86, 93, 97, 99, 100, 104, 106, 115, 118, 120, 124, 127, 128, 129, 131, 132], "whichev": 70, "while": [8, 11, 44, 45, 53, 77, 80, 86, 90, 95, 97, 98, 100, 121], "whilst": [10, 11, 16, 17, 25, 27, 39, 68], "whishaw": 113, "whisk": 113, "whisker": [3, 11], "white": 45, "whitlock": 113, "who": [4, 5, 10, 16, 23, 45, 106], "whoever": 91, "whole": [3, 5, 6, 11, 15, 16, 18, 20, 21, 34, 41, 42, 51, 52, 63, 65, 68, 69, 72, 73, 87, 99, 113, 123, 130], "wholebrain": 113, "whose": [37, 68], "whs_sd_rat_39um": [46, 47], "why": [23, 26, 105, 113], "wide": [28, 64, 73, 113, 114], "widen": 113, "widget": [11, 24, 37, 38, 54, 58, 73, 95, 121, 122, 124, 125, 126, 128, 130, 131, 132], "width": [22, 55, 61, 94, 107], "wiestler": 113, "wild": 113, "wilhelm": 113, "wiliam": 56, "willgraham01": 112, "william": 113, "williford": 113, "willmor": 113, "wilson": 113, "window": [54, 59, 67, 73, 77, 79, 81, 82, 89, 95, 100, 105, 106, 118, 119, 121, 122, 124, 125, 126, 128, 130, 131, 132], "winter": 113, "wisdom": 113, "wish": [33, 37, 38, 39, 40, 50, 73, 82, 101, 125], "within": [2, 3, 5, 6, 8, 11, 12, 13, 24, 38, 42, 43, 52, 53, 54, 65, 66, 69, 70, 78, 113, 116, 129, 130], "without": [5, 7, 16, 17, 34, 37, 42, 43, 49, 56, 73, 75, 94, 95, 105], "witt": 113, "witten": 113, "won": [16, 37, 43, 51, 62, 83, 89, 105], "wonder": 74, "wong": 113, "woo": 112, "work": [0, 3, 7, 8, 9, 11, 13, 14, 24, 28, 30, 38, 39, 40, 42, 45, 46, 47, 50, 51, 55, 56, 61, 62, 63, 64, 68, 73, 80, 81, 83, 84, 89, 91, 96, 105, 107, 112, 116, 117, 118, 119, 121, 124, 128], "workflow": [0, 6, 11, 13, 15, 16, 17, 24, 28, 31, 32, 40, 42, 43, 59, 65, 67, 78, 87, 88, 101, 113, 116, 118], "workshop": 113, "world": [114, 118], "worri": [16, 17, 27, 45, 85], "wors": [5, 99], "would": [1, 2, 5, 12, 13, 14, 17, 23, 25, 27, 44, 65, 72, 80, 84, 86, 88, 93, 99, 107, 126, 128], "wrap": 34, "wrapper": [28, 87], "wrapup_atlas_from_data": 45, "wright": 113, "write": [24, 25, 26, 28, 45, 56, 101], "written": [17, 22, 45, 63, 70], "wrong": [74, 105], "wu": 113, "wutk": 113, "x": [10, 15, 25, 26, 27, 30, 38, 40, 46, 47, 51, 60, 61, 73, 76, 82, 84, 92, 94, 95, 105, 106, 113, 121, 122, 127, 131], "x2": 116, "x_scaling_factor": 57, "xiaomeng": 113, "xie": 113, "xin": 113, "xinxin": 113, "xiong": 113, "xlabel": 51, "xml": [59, 60, 66, 92, 95, 97, 99, 121, 122, 130], "xu": 113, "xue": 113, "xy": [60, 94], "y": [25, 27, 30, 51, 60, 61, 69, 73, 76, 84, 92, 94, 95, 99, 100, 113, 121, 127, 131], "y_scaling_factor": 57, "yale": 113, "yaml": [25, 28, 33, 98, 99, 122], "yaml_1": 99, "yaml_2": 99, "yaml_fil": 92, "yaml_str_to_dict": 28, "yan": 113, "yang": 113, "yao": 113, "yate": 113, "ye": [113, 124], "year": [28, 41, 42, 43, 51, 56, 106], "yellow": [67, 119, 121], "yet": [42, 43, 44, 45, 58, 66, 83, 92, 121, 125, 126], "ylabel": 51, "yml": [32, 92, 99, 100, 122], "yoda": 112, "you": [1, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 20, 21, 22, 23, 25, 27, 28, 29, 31, 33, 34, 37, 38, 39, 40, 41, 44, 46, 47, 48, 50, 51, 52, 53, 54, 55, 56, 57, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 72, 73, 74, 76, 77, 78, 79, 80, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 97, 98, 99, 100, 101, 103, 104, 105, 106, 107, 115, 116, 117, 119, 120, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "young": [47, 112, 113], "your": [1, 3, 4, 5, 7, 8, 10, 11, 13, 14, 15, 17, 19, 23, 25, 28, 33, 37, 38, 39, 40, 41, 44, 45, 46, 47, 49, 50, 51, 52, 56, 59, 61, 62, 63, 64, 65, 68, 69, 70, 71, 72, 73, 74, 75, 77, 78, 81, 82, 85, 86, 87, 88, 89, 93, 94, 95, 97, 98, 99, 100, 101, 104, 107, 108, 115, 116, 117, 118, 119, 121, 122, 124, 125, 126, 127, 128, 129, 130, 131, 132], "yourself": [23, 40, 101], "z": [25, 27, 51, 60, 61, 62, 73, 76, 84, 92, 94, 95, 107, 113, 121, 127, 131], "z_scaling_factor": 57, "zahler": 113, "zalta": 113, "zdora": 113, "zebra": 51, "zebrafish": [45, 46, 83, 102, 113, 124, 132], "zeller": 113, "zenodo": 51, "zerbi": 113, "zero": [45, 127], "zhang": 113, "zhao": 113, "zheng": 113, "zhou": 113, "zhu": 113, "zhukovskaya": 113, "ziminski": 112, "zimmerman": 113, "zingg": 113, "zip": 55, "ziyang": 112, "zizhen": 113, "zoom": [54, 82, 86, 119, 131], "zsh": 23, "zulip": [16, 23, 26, 41, 44], "zyx": 22, "\u00e7etin": 113, "\u00e9": 113, "\u00f6": 113, "\u00f6nc\u00fcl": 113, "\u00f6zt\u00fcrk": 113, "\u00f8vsthu": 113, "\u00fcnai": 113, "\u0161tih": 113, "\u03bcm": 51}, "titles": ["About", "bg-atlasapi and bg-atlasgen have merged under a new name", "An Atlas for the regenerative Ambystoma mexicanum (axolotl) has been added to BrainGlobe", "A mouse brain atlas with barrel field annotations has been added to BrainGlobe", "bg-space has been renamed", "BrainGlobe version 1.1.0 is released!", "New brainmapper napari widget released", "Plans for brainrender", "An atlas for the Blind Mexican Cavefish has been added to BrainGlobe", "Cellfinder version 1.3.0 is released!", "imio will be merging into brainglobe-utils", "Blog", "An atlas for the prairie vole Microtus ochrogaster has been added to BrainGlobe", "Version 1 of brainreg and brainglobe-segmentation released", "cellfinder has moved: version 1 of brainglobe-workflows released", "cellfinder-core and cellfinder-napari have merged", "BrainGlobe is being restructured, version 1 is on it\u2019s way!", "BrainGlobe version 1 is here!", "Courses", "Whole brain microscopy analysis with BrainGlobe and napari", "December 6th 2023", "October 7th-8th 2024", "Conventions", "Developer\u2019s guide", "Introduction to the BrainGlobe codebase for developers", "Publishing new releases", "brainglobe-atlasapi", "brainglobe-meta", "brainglobe-utils", "brainglobe-workflows", "cellfinder.core", "Specific Repository Developer Documentation", "Testing", "Tooling", "Software built by the community", "Community", "Releases", "Version 1: changes to registration and segmentation tools", "Version 1: changes to the cellfinder backend and plugin", "Version 1: Cellfinder migration and brainglobe-workflows", "BrainGlobe version 1 overview", "Roadmaps", "May 2024", "November 2023", "Contact", "Adding a new atlas", "BrainGlobe Atlas API (brainglobe-atlasapi)", "Atlas details", "Command line interface", "Python API", "Using the files directly", "brainglobe-heatmap", "brainglobe-segmentation", "Analysing segmentation from other napari plugins", "Prerequisites", "brainglobe-space", "Generating Citations for BrainGlobe tools", "Image IO submodule", "brainglobe-utils", "brainmapper cell transformation widget", "Cell candidate detection", "Cell candidate classification", "Command line interface", "Data requirements", "Debugging common error messages", "brainmapper command line tool", "Output files", "Visualisation", "brainglobe-workflows", "brainreg", "Requirements", "Troubleshooting", "Command line tool", "Napari plugin", "Checking orientation", "Output files", "Registration parameters", "Visualising brainreg output", "brainrender", "Installing brainrender", "Actors", "Usage", "Scene", "Using Notebooks", "Using your own data in brainrender", "Registering data", "Videos, animations and exporting to html", "cellfinder", "Installation", "Debugging common error messages", "Troubleshooting", "Speeding up cellfinder", "cellfinder.core API", "Downloading the pre-trained model in advance", "All cell detection parameters", "Cell detection", "cellfinder napari plugin", "Generating data to retrain the cellfinder classification network", "Retraining the network for new data", "Retraining the pre-trained network", "Using supplied training data", "Documentation", "morphapi", "Downloading data", "Rendering data", "Using conda", "Setting up your GPU", "Image space definition", "Setting up", "Funders", "BrainGlobe", "Media", "People", "BrainGlobe publications", "Talks", "Exploring the numerical results", "Whole brain cell detection and registration with the brainmapper command line tool", "Running brainmapper", "Setting up", "Visualising the results", "Visualising your data in brainrender", "Detecting cells in 3D with cellfinder", "Retraining the cellfinder classification network", "Tutorials", "Download an atlas through napari", "Segmenting a 1D track", "Segmenting 2/3D structures", "Silicon probe tracking", "Aligning samples for template building", "Analyze and visualize bulk fluorescence tracing data", "Analysing brainwide distribution of cells", "Registering a whole-brain image to an atlas", "Visualise an atlas in napari"], "titleterms": {"": [16, 23, 47, 85], "0": [5, 9, 68], "1": [5, 9, 13, 14, 16, 17, 36, 37, 38, 39, 40], "1d": 125, "2": 126, "2020": 111, "2023": [20, 43], "2024": [21, 42, 43], "2025": 42, "24": 64, "2d": 30, "3": 9, "3d": [30, 47, 111, 121, 126], "6th": 20, "7th": 21, "8th": 21, "A": [3, 47, 74], "On": 25, "The": [55, 89, 111], "These": 111, "To": [23, 54, 92], "_fmt": 28, "about": [0, 74], "access": 0, "activ": 105, "actor": [80, 82], "ad": [2, 3, 8, 12, 26, 28, 45, 80, 82], "addit": [31, 62, 72, 73], "adult": 47, "advanc": [79, 93], "affin": 76, "aid": 111, "al": 47, "algorithm": [89, 90], "align": [34, 85, 114, 128], "all": [59, 94], "allen": [47, 103], "ambystoma": 2, "amphibian": 47, "an": [2, 8, 12, 45, 111, 124, 127, 129, 131, 132], "analys": [53, 130], "analysi": [19, 20, 21, 66], "analyz": [0, 129], "anatom": 49, "anatomi": 114, "anim": 86, "annot": [3, 49, 97], "anyth": 90, "api": [46, 49, 92], "appendix": 16, "applic": 123, "april": 111, "ar": [2, 3, 8, 12, 45, 111], "architectur": 24, "aren": 89, "argument": [62, 64, 72, 99], "arrai": 22, "atla": [2, 3, 8, 12, 23, 26, 45, 46, 47, 49, 70, 72, 85, 124, 127, 129, 131, 132], "atlas": [2, 3, 8, 12, 34, 45, 46, 47, 51], "atlasapi": [1, 5, 26, 46], "atlasgen": 1, "autom": 33, "avail": [46, 47], "awar": 47, "award": 111, "axi": 22, "axolotl": [2, 47], "axon": 129, "azba": 47, "backend": [9, 38, 72], "barrel": [3, 47], "basic": [62, 72, 79], "been": [2, 3, 4, 8, 12], "befor": [118, 127, 129], "being": 16, "below": 25, "best": 111, "better": 91, "bg": [1, 4], "big": 34, "blind": [8, 47], "blog": 11, "bluebrain": 47, "brain": [3, 19, 34, 47, 111, 116, 127, 129, 131], "brainatla": 34, "brainglob": [2, 3, 5, 8, 10, 12, 13, 14, 16, 17, 19, 20, 21, 24, 26, 27, 28, 29, 31, 36, 38, 39, 40, 45, 46, 51, 52, 55, 56, 58, 68, 101, 110, 111, 113, 114], "brainglobeatla": 49, "brainmapp": [6, 59, 62, 65, 87, 88, 116, 117], "brainreg": [5, 13, 37, 69, 73, 77], "brainrend": [5, 7, 78, 79, 84, 111, 120, 127], "braintrac": 34, "brainwai": 34, "brainwid": 130, "bug": 44, "build": 128, "built": 34, "bulk": 129, "camera": [74, 82], "can": [16, 40, 45, 89], "candid": [60, 61, 90, 92], "cannot": 64, "cavefish": [8, 47], "ccf": 47, "cell": [30, 59, 60, 61, 84, 90, 91, 92, 94, 95, 111, 116, 121, 130], "cellfind": [5, 9, 14, 15, 16, 29, 30, 38, 39, 65, 68, 87, 88, 91, 92, 95, 96, 97, 111, 121, 122], "chan": 111, "chang": [16, 37, 38, 40], "changelog": [13, 14, 15, 17, 40], "channel": [63, 73], "check": [74, 105], "citat": [28, 46, 52, 56, 69, 78], "cite": [28, 51, 65, 87, 113], "class": [55, 80], "classif": [9, 61, 90, 91, 92, 97, 122], "clearfind": 34, "cli": [38, 39], "code": 23, "codebas": 24, "coder": 111, "command": [25, 37, 48, 62, 65, 70, 72, 87, 116], "commandlineinputerror": 64, "commit": 33, "common": [64, 71, 89], "commun": [34, 35, 111], "comput": [91, 114], "conda": [25, 40, 105], "contact": 44, "continu": 32, "contribut": [23, 44, 45, 51], "contributor": 112, "convent": [22, 27], "convolut": 89, "coordin": [25, 51, 84, 89], "cord": 47, "core": [15, 30, 38, 87, 92], "coron": 107, "correct": 74, "cortex": 47, "could": 89, "cours": 18, "cpu": 89, "creat": [23, 49, 105], "credit": 45, "current": [42, 43, 102], "dask": 92, "data": [0, 24, 32, 45, 54, 63, 67, 73, 80, 84, 85, 91, 95, 97, 98, 99, 100, 103, 104, 111, 120, 129], "dataset": 102, "dawlei": 47, "debug": [62, 64, 89], "decemb": 20, "deep": 111, "default": 24, "definit": 107, "delai": 39, "depend": [22, 27], "deriv": 47, "detail": [0, 5, 46, 47, 59, 69, 105], "detect": [30, 60, 90, 92, 94, 95, 111, 116, 121, 129], "determin": 128, "develop": [17, 23, 24, 31, 47], "development": 47, "directli": 50, "disambigu": 39, "distribut": [45, 130], "dll": 89, "do": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 45], "docker": 39, "document": [22, 23, 25, 31, 78, 101], "doe": 6, "don": 38, "download": [70, 88, 93, 103, 105, 118, 124], "drive": 91, "driver": 106, "easi": 55, "ecosystem": 114, "edg": 47, "edit": [23, 82], "els": 90, "embed": 83, "enhanc": 47, "environ": [23, 105], "errno": 64, "error": [64, 71, 89], "et": 47, "exampl": [24, 25, 107], "execut": 37, "exist": 45, "explor": 115, "export": [82, 86, 97], "extract": 45, "fail": [25, 89], "fast": 91, "fault": 71, "featur": [44, 53], "feedstock": 25, "fetch": 28, "field": 3, "figur": [62, 66], "file": [29, 50, 64, 66, 75], "filter": 30, "find": 89, "fish": 47, "fix": 90, "fluoresc": 129, "forg": [25, 40], "format": 28, "found": [64, 89], "freeform": 76, "from": [25, 27, 40, 47, 53, 111], "full": [13, 14, 15, 17, 40, 78, 92], "funder": 109, "further": [23, 99, 105], "futur": [0, 39, 42], "gener": [45, 56, 97, 99], "get": [44, 45, 67, 73, 89, 123], "glanc": 40, "gpu": 106, "grant": 111, "gubra": 47, "guid": [23, 24, 51, 52, 58, 65, 69, 87], "ha": [2, 3, 4, 8, 12, 14], "har": 111, "hard": 91, "have": [1, 15, 38], "heatmap": 51, "help": 99, "hemispher": 49, "here": 17, "hierarchi": 49, "highlight": 25, "histologi": [20, 21, 114], "hood": 16, "hook": 33, "horizont": 107, "how": [2, 3, 6, 8, 12, 16, 45, 59, 69], "html": 86, "human": 47, "i": [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 38, 40, 45, 91, 105], "imag": [39, 57, 63, 84, 107, 111, 131], "imio": 10, "importerror": 89, "improv": [23, 71, 90], "incorrect": 74, "individu": 101, "info": 89, "inform": [23, 31, 59], "initi": [45, 111], "inspect": 45, "instal": [6, 27, 40, 46, 51, 52, 55, 57, 59, 68, 69, 70, 79, 87, 88, 101, 102, 105, 106, 118], "instruct": [53, 89], "instructor": [20, 21], "integr": 32, "interest": 53, "interfac": [48, 62], "introduct": [0, 19, 23, 24, 53, 55, 63, 78, 91, 105, 106, 127, 129], "io": 57, "issu": [42, 43, 91], "iter": 55, "its": 59, "join": 111, "jupyt": 83, "kim": 47, "know": 17, "lab": 47, "last": 42, "layer": 53, "lazi": 92, "leadership": 112, "learn": 111, "like": 89, "line": [25, 37, 48, 62, 65, 70, 72, 87, 116], "load": [54, 57, 73, 84, 89, 92, 95, 97], "locat": [20, 21], "look": 89, "lsfm": 47, "magellanmapp": 34, "mai": 42, "main": [5, 9], "mandatori": [62, 72, 94, 95, 98], "mani": 64, "map": 111, "mask": 49, "match": [55, 85], "materi": [18, 19, 20, 21], "max": 47, "media": 111, "merg": [1, 10, 15], "mesh": [45, 49], "messag": [64, 71, 89], "meta": 27, "metadata": 49, "metapackag": [25, 59], "method": 82, "methodologi": 30, "mexican": [8, 47], "mexicanum": 2, "microscopi": [19, 111], "microtu": 12, "migrat": 39, "miniconda": 105, "misc": [72, 94, 98], "model": [88, 93], "modul": 89, "more": [0, 46], "morphapi": 102, "morphologi": [84, 103], "mous": [3, 47], "mouselight": 103, "move": 14, "mpin": 103, "name": 1, "napari": [6, 15, 19, 20, 21, 37, 38, 53, 59, 70, 73, 87, 96, 111, 124, 132], "navig": 54, "need": [1, 4, 5, 7, 9, 10, 13, 14, 15, 17, 45], "network": [91, 92, 97, 98, 99, 122], "neuro": 114, "neuromorpho": 103, "neuron": 84, "neurosci": 111, "neuroscientist": 111, "new": [1, 2, 3, 6, 8, 12, 23, 25, 26, 28, 39, 45, 98], "niftyreg": 76, "note": [16, 36, 65, 74], "notebook": [78, 83], "novemb": 43, "numer": [59, 115], "nvidia": 106, "object": 49, "ochrogast": 12, "octob": 21, "offset": [55, 85], "older": 68, "ongo": 43, "onli": 62, "open": [64, 111], "opencv": 89, "option": [62, 70, 72, 94, 98], "order": 22, "organis": 63, "orient": [74, 107, 128], "oserror": 64, "other": [43, 44, 47, 51, 53, 80], "output": [66, 75, 77], "over": 55, "overview": [20, 21, 40], "own": [59, 84], "p56": 47, "packag": [39, 88], "paprica": 34, "paramet": [73, 76, 94, 95, 98], "part": [59, 62], "path": [29, 64], "pattern": 56, "peopl": 112, "perform": [9, 62, 71, 90], "pin": [25, 27], "pip": 27, "pipelin": 92, "plan": 7, "planck": 47, "plane": 51, "platform": 111, "plugin": [37, 38, 53, 70, 73, 87, 96], "point": [59, 66], "posit": [51, 74], "power": 111, "practic": 24, "prairi": [12, 47], "pre": [33, 88, 93, 99], "prerequisit": [20, 21, 54, 59], "previou": 18, "previous": 38, "princeton": 47, "principl": 24, "probe": 127, "problem": [71, 90], "programmat": 45, "progress": 42, "project": [43, 55], "public": 113, "publish": 25, "pull": 23, "put": 91, "pypi": [27, 59], "python": [39, 49, 111, 114], "pytorch": [9, 106], "q1": 42, "q2": [42, 43], "q3": 42, "q4": [42, 43], "queri": 49, "question": 44, "rat": 47, "raw": 67, "refer": 47, "refin": 47, "regen": 2, "regener": 27, "region": [49, 51], "regist": [73, 84, 85, 131], "registr": [37, 66, 71, 72, 73, 76, 116, 127, 129], "relat": 123, "releas": [5, 6, 9, 13, 14, 25, 36, 43], "remov": 82, "renam": 4, "render": [82, 83, 104], "report": 89, "repositori": [28, 31, 39], "request": [23, 44], "requir": [63, 70, 88, 106], "resolut": [55, 85], "restructur": [16, 36], "result": [45, 59, 67, 92, 115, 119], "retrain": [97, 98, 99, 122], "roadmap": [41, 42], "rodent": 47, "run": [62, 73, 92, 95, 98, 117], "sampl": 128, "save": [57, 92, 95], "scene": [80, 82, 83], "schedul": 19, "screenshot": 86, "script": 45, "section": 107, "segment": [5, 13, 37, 52, 53, 71, 125, 126], "separ": [83, 92], "set": [73, 89, 95, 98, 106, 108, 118], "setup": 105, "silicon": 127, "sinc": 42, "size": 107, "slice": 51, "slow": 91, "smooth": 47, "softwar": 34, "sourc": 111, "space": [4, 47, 55, 62, 85, 107], "spaceconvent": 55, "spatial": 22, "specif": [31, 80, 91, 123], "specifi": 89, "speed": 91, "spike": 114, "spinal": 47, "spragu": 47, "stack": 49, "stai": 16, "standalon": 52, "standard": 62, "start": [67, 73, 99, 118, 123], "statu": [42, 43], "stori": 111, "strategi": 99, "streamlin": 84, "structur": [30, 49, 63, 126], "submodul": [28, 57], "suggest": 19, "summari": 59, "suppli": 100, "support": [22, 28, 39, 84, 102, 106], "sure": 45, "surfac": 84, "t": [38, 89], "talk": 114, "tbc": 43, "technic": 90, "templat": 128, "tensorflow": [9, 89], "test": [32, 62], "than": 68, "theori": 99, "thing": [89, 91], "through": 124, "too": 64, "tool": [24, 28, 31, 33, 37, 39, 56, 65, 70, 72, 87, 101, 116], "touch": 44, "trace": [127, 129], "track": [125, 127, 129], "train": [88, 91, 92, 93, 97, 98, 99, 100], "transform": 59, "tree": 27, "trigger": 25, "troubleshoot": [71, 87, 90], "try": 91, "tutori": [19, 65, 116, 123], "two": 111, "type": [80, 84], "unam": 47, "under": [1, 16], "unifi": 47, "unrecogn": 64, "up": [19, 73, 91, 106, 108, 118], "updat": [5, 9, 16, 38, 39, 40, 45, 101], "upload": 45, "us": [2, 3, 6, 8, 12, 20, 21, 38, 49, 50, 51, 56, 59, 78, 83, 84, 87, 91, 92, 100, 105, 111], "usag": [46, 54, 55, 56, 62, 72, 77, 81, 102], "user": [17, 24, 51, 52, 58, 65, 69, 87], "util": [5, 10, 28, 58], "v1": [43, 68], "v2": 43, "v3": 43, "version": [5, 9, 13, 14, 16, 17, 27, 33, 36, 37, 38, 39, 40, 47, 68], "via": [27, 59], "video": 86, "visual": [0, 51, 80, 127, 129], "visualis": [67, 77, 111, 119, 120, 132], "vole": [12, 47], "volum": 84, "voxel": 107, "vvasp": 34, "wai": [16, 44, 87], "warn": 39, "waxholm": 47, "we": [2, 3, 8, 12], "what": [1, 4, 5, 6, 7, 9, 10, 13, 14, 15, 16, 17, 45], "whole": [19, 111, 116, 131], "why": [2, 3, 8, 12, 111], "widget": [6, 59], "window": 83, "within": 59, "work": 82, "workflow": [5, 14, 25, 29, 38, 39, 68, 99], "wrap": 19, "you": [17, 45, 118], "your": [53, 54, 67, 80, 83, 84, 91, 105, 106, 120], "zebrafish": [47, 103], "zuckerberg": 111}}) \ No newline at end of file