Skip to content
Snippets Groups Projects
Commit aed7fee7 authored by Jonathan Guinet's avatar Jonathan Guinet
Browse files

DOC: Split application doc update.

parent b9808e69
No related branches found
No related tags found
No related merge requests found
...@@ -52,15 +52,25 @@ private: ...@@ -52,15 +52,25 @@ private:
{ {
SetName("SplitImage"); SetName("SplitImage");
SetDescription("Split a N multiband image into N images"); SetDescription("Split a N multiband image into N images");
SetDocName("Split Image Application");
SetDocLongDescription("This application splits a N multiband image into N images.");
SetDocLimitations("None");
SetDocAuthors("OTB-Team");
SetDocSeeAlso(" ");
SetDocCLExample("otbApplicationLauncherCommandLine SplitImage ${OTB-BIN}/bin"
" --in ${OTB-DATA}/Input/poupees_sub.png --out splittedImage.tif");
AddDocTag("Image Manipulation");
} }
void DoCreateParameters() void DoCreateParameters()
{ {
AddParameter(ParameterType_InputImage, "in", "Input Image"); AddParameter(ParameterType_InputImage, "in", "Input Image");
SetParameterDescription("in","Input image filename.");
AddParameter(ParameterType_Filename, "out", "Output Image"); AddParameter(ParameterType_Filename, "out", "Output Image");
SetParameterDescription("out", SetParameterDescription("out",
"will be used to get the prefix and the extension of the output images to write"); "Will be used to get the prefix and the extension of the output images to write");
SetParameterRole("out",Role_Output); SetParameterRole("out",Role_Output);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment