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

Update antsRegistration.cxx #1175

Merged
merged 1 commit into from
Apr 9, 2021
Merged
Changes from all commits
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
4 changes: 2 additions & 2 deletions Examples/antsRegistration.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ static void antsRegistrationInitializeCommandLineOptions( itk::ants::CommandLine
OptionType::Pointer option = OptionType::New();
option->SetLongName( "save-state" );
option->SetShortName( 'j' );
option->SetUsageOption( 0, "saveSateAsTransform" );
option->SetUsageOption( 0, "saveStateAsTransform" );
option->SetDescription( description );
parser->AddOption( option );
}
Expand Down Expand Up @@ -123,7 +123,7 @@ static void antsRegistrationInitializeCommandLineOptions( itk::ants::CommandLine

// This is currently not functioning properly for all linear transforms. If I
// restrict the linear transforms to rigid transforms, then it seems to work.
// I think there's something in working with images that doesn't work properly
// I think there's something in working with images that don't work properly
// with a generic affine transform in the header. You can certainly store it
// and read it from the header but perhaps this interferes with something fundamental
// like transforming indices to physical coordinates. I'll have to investigate
Expand Down