Skip to content

Commit

Permalink
DOC: Add a couple of unit specs to the command line help.
Browse files Browse the repository at this point in the history
  • Loading branch information
ntustison committed Sep 9, 2021
1 parent d11d416 commit d97eb53
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Examples/KellyKapowski.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -564,7 +564,7 @@ void KellyKapowskiInitializeCommandLineOptions( itk::ants::CommandLineParser *pa

{
std::string description =
std::string( "Defines the Gaussian smoothing of the hit and total images. Default = 1.0." );
std::string( "Defines the Gaussian smoothing of the hit and total images. Default = 1.0 mm." );

OptionType::Pointer option = OptionType::New();
option->SetLongName( "smoothing-variance" );
Expand All @@ -576,9 +576,9 @@ void KellyKapowskiInitializeCommandLineOptions( itk::ants::CommandLineParser *pa

{
std::string description =
std::string( "Defines the Gaussian smoothing of the velocity field (default = 1.5)." )
std::string( "Defines the Gaussian smoothing of the velocity field (default = 1.5 voxels)." )
+ std::string( "If the b-spline smoothing option is chosen, then this " )
+ std::string( "defines the isotropic mesh spacing for the smoothing spline (default = 15)." );
+ std::string( "defines the isotropic mesh spacing for the smoothing spline (default = 15 mm)." );

OptionType::Pointer option = OptionType::New();
option->SetLongName( "smoothing-velocity-field-parameter" );
Expand Down

0 comments on commit d97eb53

Please sign in to comment.