Skip to content

Commit 984456a

Browse files
committed
Revert "Changed n. bins"
This reverts commit 5f5b978.
1 parent 6f3e7c2 commit 984456a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

nipype/interfaces/ants/registration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,11 +225,11 @@ class RegistrationInputSpec(ANTSCommandInputSpec):
225225
requires=['metric'], mandatory=True,
226226
desc='the metric weight(s) for each stage. '
227227
'The weights must sum to 1 per stage.')
228-
radius_bins_item_trait = traits.Float(64)
228+
radius_bins_item_trait = traits.Int(5)
229229
radius_bins_stage_trait = traits.Either(
230230
radius_bins_item_trait, traits.List(radius_bins_item_trait))
231231
radius_or_number_of_bins = traits.List(
232-
radius_bins_stage_trait, value=[64], usedefault=True,
232+
radius_bins_stage_trait, value=[5], usedefault=True,
233233
requires=['metric_weight'],
234234
desc='the number of bins in each stage for the MI and Mattes metric, '
235235
'the radius for other metrics')

0 commit comments

Comments
 (0)