Commit b52ca731 authored by Marina Bertolino's avatar Marina Bertolino
Browse files

DOC: enhance documentation of ConcatenateImages

No related merge requests found
Showing with 6 additions and 4 deletions
+6 -4
......@@ -61,10 +61,12 @@ private:
// Documentation
SetDocName("Images Concatenation");
SetDocLongDescription("This application performs images channels concatenation. It will walk the input image list (single or multi-channel) and generates a single multi-channel image. The channel order is the one of the list.");
SetDocLongDescription("This application performs images channels concatenation. "
"It reads the input image list (single or multi-channel) "
"and generates a single multi-channel image. The channel order is the same as the list.");
SetDocLimitations("All input images must have the same size.");
SetDocAuthors("OTB-Team");
SetDocSeeAlso("Rescale application, Convert");
SetDocSeeAlso("Rescale application, Convert, SplitImage");
AddDocTag(Tags::Manip);
AddDocTag("Concatenation");
......@@ -75,10 +77,10 @@ private:
m_ImageList = ImageListType::New();
AddParameter(ParameterType_InputImageList, "il", "Input images list");
SetParameterDescription("il", "The list of images to concatenate");
SetParameterDescription("il", "The list of images to concatenate, must have the same size.");
AddParameter(ParameterType_OutputImage, "out", "Output Image");
SetParameterDescription("out", "The concatenated output image");
SetParameterDescription("out", "The concatenated output image.");
AddRAMParameter();
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment