Skip to content
Snippets Groups Projects
Commit 4f448dcd authored by Otmane Lahlou's avatar Otmane Lahlou
Browse files

ENH : remove the - from the option alias name

parent d263b547
No related branches found
No related tags found
No related merge requests found
......@@ -31,14 +31,14 @@ int CompareImages::Describe(ApplicationDescriptor* descriptor)
{
descriptor->SetName("CompareImages");
descriptor->SetDescription("Estimator between 2 images");
descriptor->AddOption("InputReference","The reference image","-inR", 1, true,ApplicationDescriptor::String);
descriptor->AddOption("InputMeasured","The measured image","-inM", 1, true,ApplicationDescriptor::String);
descriptor->AddOption("NumBandRefImage","The channel number to compare in the reference image (between 1 and number of channels)","-chR", 1, false,ApplicationDescriptor::Integer);
descriptor->AddOption("NumBandMeasuredImage","The channel number to compare in the measured image (between 1 and number of channels)","-chM", 1, false,ApplicationDescriptor::Integer);
descriptor->AddOption("StartX", "first point in x-axis ", "-x0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("StartY", "first point in y-axis ", "-y0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("SizeX", "size in x-axis ", "-Nx", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("SizeY", "size in y-axis ", "-Ny", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("InputReference","The reference image","inR", 1, true,ApplicationDescriptor::String);
descriptor->AddOption("InputMeasured","The measured image","inM", 1, true,ApplicationDescriptor::String);
descriptor->AddOption("NumBandRefImage","The channel number to compare in the reference image (between 1 and number of channels)","chR", 1, false,ApplicationDescriptor::Integer);
descriptor->AddOption("NumBandMeasuredImage","The channel number to compare in the measured image (between 1 and number of channels)","chM", 1, false,ApplicationDescriptor::Integer);
descriptor->AddOption("StartX", "first point in x-axis ", "x0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("StartY", "first point in y-axis ", "y0", 1, false, ApplicationDescriptor::Real);
descriptor->AddOption("SizeX", "size in x-axis ", "Nx", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("SizeY", "size in y-axis ", "Ny", 1, false, ApplicationDescriptor::Integer);
return EXIT_SUCCESS;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment