Skip to content

ENH: Add reverse-ordered transform lists to ants.Registration outputs #3192

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

Merged
merged 3 commits into from
Mar 30, 2020
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
doctest: +ELLIPSIS fix
  • Loading branch information
sulantha2006 committed Mar 23, 2020
commit f8a2e53e79f3eab173693c82b45f43a07299d27b
5 changes: 5 additions & 0 deletions nipype/interfaces/ants/registration.py
Original file line number Diff line number Diff line change
Expand Up @@ -803,6 +803,8 @@ class Registration(ANTSCommand):
'inverse_composite_transform': '...data/output_InverseComposite.h5',
'inverse_warped_image': <undefined>,
'metric_value': <undefined>,
'reverse_forward_invert_flags': [],
'reverse_forward_transforms': [],
'reverse_invert_flags': [],
'reverse_transforms': [],
'save_state': '...data/trans.mat',
Expand Down Expand Up @@ -832,6 +834,9 @@ class Registration(ANTSCommand):
'inverse_composite_transform': <undefined>,
'inverse_warped_image': <undefined>,
'metric_value': <undefined>,
'reverse_forward_invert_flags': [False, False],
'reverse_forward_transforms': ['...data/output_1Warp.nii.gz',
'...data/output_0GenericAffine.mat'],
'reverse_invert_flags': [True, False],
'reverse_transforms': ['...data/output_0GenericAffine.mat', \
'...data/output_1InverseWarp.nii.gz'],
Expand Down