Hi all, <br>I have a program that use too many arguments: input, output parameters, the program work with <br><br>&gt;./runProgram ImageInput ImageOutput Parameter1 .... ParameterN <br><br>Sometimes, just 1 prameter is needed.<br>
<br>I want to make the program easy to use, for example :  <br><br>&gt;./runProgram -I ImageInput -O ImageOutput -o option1 -p Parameter  (in this case I dont need to give the rest of the parameters)<br>&gt;./runProgram -I ImageInput -O ImageOutput -o option2 -p1 Parameter1 ... -pN parameterN <br>
<br><br>Do I need to implement  method for this  with &quot;If&quot; ....<br>or there exist itk methods that help to do that ? <br> <br>Thanks <br>