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

ENH : remove the - from the option alias name

parent 466cd5fc
No related branches found
No related tags found
No related merge requests found
......@@ -100,14 +100,14 @@ int ConcatenateImages::Describe(ApplicationDescriptor* descriptor)
descriptor->SetName("ConcatenateImages");
descriptor->SetDescription("Concatenate n images in a multiband image");
descriptor->AddOutputImage();
descriptor->AddOptionNParams("InputImagesList", "Images list to concatenate", "-il", true,ApplicationDescriptor::InputImage);
descriptor->AddOptionNParams("InputImagesList", "Images list to concatenate", "il", true,ApplicationDescriptor::InputImage);
descriptor->AddOption("OutputPixelType",
"OutputPixelType: unsigned char (1), short int (2), int (3), float (4),"
" double (5), unsigned short int (12), unsigned int (13); default 2",
"-t", 1, false, ApplicationDescriptor::Integer);
"t", 1, false, ApplicationDescriptor::Integer);
descriptor->AddOption("OutputNameList",
"Text file containing the name of the images used to generate the output in the same order",
"-ot", 1, false,ApplicationDescriptor::String);
"ot", 1, false,ApplicationDescriptor::String);
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