Skip to content

Commit

Permalink
[BUG, MRG] Fix CT-MR registration (#9711)
Browse files Browse the repository at this point in the history
* wip

* wip
  • Loading branch information
alexrockhill authored Sep 2, 2021
1 parent 2e672de commit b20f6b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions mne/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@
transform_zooms=dict(
translation=None, rigid=None, affine=None, sdr=None),
transform_niter=dict(
translation=(100, 100, 10),
rigid=(100, 100, 10),
affine=(100, 100, 10),
sdr=(5, 5, 3)),
translation=(10000, 1000, 100),
rigid=(10000, 1000, 100),
affine=(10000, 1000, 100),
sdr=(10, 10, 5)),
volume_label_indices=(
# Left and middle
4, # Left-Lateral-Ventricle
Expand Down
8 changes: 4 additions & 4 deletions mne/utils/docs.py
Original file line number Diff line number Diff line change
Expand Up @@ -2557,10 +2557,10 @@
step as a key. Steps not in the dictionary will use the default value.
The default (None) is equivalent to:
niter=dict(translation=(100, 100, 10),
rigid=(100, 100, 10),
affine=(100, 100, 10),
sdr=(5, 5, 3))
niter=dict(translation=(10000, 1000, 100),
rigid=(10000, 1000, 100),
affine=(10000, 1000, 100),
sdr=(10, 10, 5))
"""
docdict['pipeline'] = """
pipeline : str | tuple
Expand Down

0 comments on commit b20f6b3

Please sign in to comment.