-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MRG, BUG: Fix bug with volume morph and subject_to!="fsaverage" (#7896)
* BUG: Fix bug with volume morph and subject_to!="fsaverage" * FIX: Spelling, expose round-trip problem * STY: PEP8 * STY: Shorter * MAINT: Expose another issue * DOC: More ideas [ci skip] * MAINT: Better test * FIX: First order interp * STY: Flake * STY: Spelling
- Loading branch information
Showing
9 changed files
with
209 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,8 @@ | |
:class:`mne.VolSourceEstimate` to a common reference space. We achieve this | ||
using :class:`mne.SourceMorph`. Pre-computed data will be morphed based on | ||
an affine transformation and a nonlinear registration method | ||
known as Symmetric Diffeomorphic Registration (SDR) by Avants et al. [1]_. | ||
known as Symmetric Diffeomorphic Registration (SDR) by | ||
:footcite:`AvantsEtAl2008`. | ||
Transformation is estimated from the subject's anatomical T1 weighted MRI | ||
(brain) to `FreeSurfer's 'fsaverage' T1 weighted MRI (brain) | ||
|
@@ -18,13 +19,6 @@ | |
Afterwards the transformation will be applied to the volumetric source | ||
estimate. The result will be plotted, showing the fsaverage T1 weighted | ||
anatomical MRI, overlaid with the morphed volumetric source estimate. | ||
References | ||
---------- | ||
.. [1] Avants, B. B., Epstein, C. L., Grossman, M., & Gee, J. C. (2009). | ||
Symmetric Diffeomorphic Image Registration with Cross- Correlation: | ||
Evaluating Automated Labeling of Elderly and Neurodegenerative | ||
Brain, 12(1), 26-41. | ||
""" | ||
# Author: Tommy Clausner <[email protected]> | ||
# | ||
|
@@ -153,3 +147,6 @@ | |
# | ||
# >>> morph.apply(stc) | ||
# | ||
# References | ||
# ---------- | ||
# .. footbibliography:: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.