Skip to content
Snippets Groups Projects
Commit 90796a8f authored by Gaëlle USSEGLIO's avatar Gaëlle USSEGLIO
Browse files

COMP : ParameterType_Bool instead of ParameterType_Empty

parent 0c66c68f
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@ namespace otb
SetParameterDescription("out","Output Image : Coregistrated slave image into master geometry.");
//TruncatePrunedTree
AddParameter(ParameterType_Empty, "cint16", "Set Output conversion with cInt16 to false");
AddParameter(ParameterType_Bool, "cint16", "Set Output conversion with cInt16 to false");
SetParameterDescription("cint16", "If true, then output conversion to cInt16.");
AddRAMParameter();
......
......@@ -78,13 +78,13 @@ private:
MandatoryOff("infilemetadata");
// Empty parameters to allow more components into the projeted DEM
AddParameter(ParameterType_Empty, "withh", "Set H components into projection");
AddParameter(ParameterType_Bool, "withh", "Set H components into projection");
SetParameterDescription("withh", "If true, then H components into projection.");
AddParameter(ParameterType_Empty, "withxyz", "Set XYZ Cartesian components into projection");
AddParameter(ParameterType_Bool, "withxyz", "Set XYZ Cartesian components into projection");
SetParameterDescription("withxyz", "If true, then XYZ Cartesian components into projection.");
AddParameter(ParameterType_Empty, "withsatpos", "Set SatPos components into projection");
AddParameter(ParameterType_Bool, "withsatpos", "Set SatPos components into projection");
SetParameterDescription("withsatpos", "If true, then SatPos components into projection.");
AddParameter(ParameterType_Int, "nodata", "No Data values for the DEM");
......
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