Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[DOC]: Fix inconsistent function parameters #2295

Merged
merged 1 commit into from
Nov 17, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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