Skip to content
Snippets Groups Projects
Commit 2520645d authored by Julien Michel's avatar Julien Michel
Browse files

DOC: Updating doc of concatenate image application

parent bd6d8d5f
No related branches found
No related tags found
No related merge requests found
......@@ -56,28 +56,28 @@ private:
void DoInit()
{
SetName("ConcatenateImages");
SetDescription("Concatenate a list of images into a single multi channel one.");
SetDescription("Concatenate a list of images of the same size into a single multi-channel one.");
// Documentation
SetDocName("Images Concatenation");
SetDocLongDescription("This application performs images concatenation. It will take the input image list (mono or multi channel) and generate a single multi channel image. The channel order is the one of the list.");
SetDocLimitations("None");
SetDocLongDescription("This application performs images channels concatenation. It will walk the input image list (single or multi-channel) and generate a single multi-channel image. The channel order is the one of the list.");
SetDocLimitations("All input images must have the same size.");
SetDocAuthors("OTB-Team");
SetDocSeeAlso("Rescale application, Convert");
AddDocTag(Tags::Manip);
AddDocTag("Concatenation");
AddDocTag("Multi channel");
AddDocTag("Multi-channel");
m_Concatener = ListConcatenerFilterType::New();
m_ExtractorList = ExtractROIFilterListType::New();
m_ImageList = ImageListType::New();
AddParameter(ParameterType_InputImageList, "il", "Input image list");
SetParameterDescription("il", "Image list to concatenate");
AddParameter(ParameterType_InputImageList, "il", "Input images list");
SetParameterDescription("il", "The list of images to concatenate");
AddParameter(ParameterType_OutputImage, "out", "Output Image");
SetParameterDescription("out", "Output multiband image");
SetParameterDescription("out", "The concatenated output image");
AddParameter(ParameterType_RAM, "ram", "Available RAM");
SetDefaultParameterInt("ram", 256);
......
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