Skip to content

Commit

Permalink
[DOC]: Fix inconsistent function parameters
Browse files Browse the repository at this point in the history
Some paramters were inconsistent e.g. static_img_files
and static_image_files. They are fixed.
  • Loading branch information
areeshatariq committed Nov 16, 2020
1 parent 6c54e89 commit 65ed2ec
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dipy/workflows/align.py
Original file line number Diff line number Diff line change
Expand Up @@ -489,7 +489,7 @@ def affine(self, static, static_grid2world, moving, moving_grid2world,
affreg, params0, transform,
affine)

def run(self, static_img_files, moving_img_files, transform='affine',
def run(self, static_image_files, moving_image_files, transform='affine',
nbins=32, sampling_prop=None, metric='mi',
level_iters=[10000, 1000, 100], sigmas=[3.0, 1.0, 0.0],
factors=[4, 2, 1], progressive=True, save_metric=False,
Expand All @@ -498,10 +498,10 @@ def run(self, static_img_files, moving_img_files, transform='affine',
"""
Parameters
----------
static_img_files : string
static_image_files : string
Path to the static image file.
moving_img_files : string
moving_image_files : string
Path to the moving image file.
transform : string, optional
Expand Down

0 comments on commit 65ed2ec

Please sign in to comment.