@@ -93,7 +93,7 @@ class CreateTiledMosaicInputSpec(ANTSCommandInputSpec):
93
93
'in the output image. For example, if the user specifies ' '5x10' ', '
94
94
'then 5 rows by 10 columns of slices are rendered. If R < 0 and C > '
95
95
'0 (or vice versa), the negative value is selected'
96
- 'based on direction.' )
96
+ 'based on direction.' ))
97
97
direction = traits .Int (argstr = '%d' , desc = ('Specifies the direction of '
98
98
'the slices. If no direction is specified, the '
99
99
'direction with the coarsest spacing is chosen.' ))
@@ -122,7 +122,7 @@ class CreateTiledMosaicInputSpec(ANTSCommandInputSpec):
122
122
class CreateTiledMosaicOutputSpec (TraitedSpec ):
123
123
output_image = File (exists = True , desc = 'image file' )
124
124
125
- class CreateTiledMosaicOutputSpec (ANTSCommand ):
125
+ class CreateTiledMosaic (ANTSCommand ):
126
126
"""The program CreateTiledMosaic in conjunction with ConvertScalarImageToRGB
127
127
provides useful functionality for common image analysis tasks. The basic
128
128
usage of CreateTiledMosaic is to tile a 3-D image volume slice-wise into
@@ -142,7 +142,7 @@ class CreateTiledMosaicOutputSpec(ANTSCommand):
142
142
143
143
_cmd = 'CreateTiledMosaic'
144
144
input_spec = CreateTiledMosaicInputSpec
145
- output_spec = CreateTiledMosaicInputSpecOutputSpec
145
+ output_spec = CreateTiledMosaicOutputSpec
146
146
147
147
def _list_outputs (self ):
148
148
outputs = self ._outputs ().get ()
0 commit comments