diff --git a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx index 90de8ba281f2e9c2faee7dcbb4cb1b1f927bc5b2..f61dc99a6da40c36638c4cd5d5eb3273009abe5b 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesAnalysis.cxx @@ -145,7 +145,7 @@ private: SetMinimumParameterIntValue( "step", 1 ); - AddParameter( ParameterType_Choice, "profile", "Classification" ); + AddParameter( ParameterType_Choice, "profile", "Profile" ); SetParameterDescription( "profile", "" ); AddChoice( "profile.opening", "opening" ); AddChoice( "profile.closing", "closing" ); @@ -155,8 +155,8 @@ private: AddChoice( "profile.closingcharacteristics", "closingcharacteristics" ); AddChoice( "profile.classification", "classification" ); - AddParameter( ParameterType_Float, "profile.classification.sigma", "Sigma" ); - SetParameterDescription( "profile.classification.sigma", "Sigma" ); + AddParameter( ParameterType_Float, "profile.classification.sigma", "Sigma value for leveling tolerance" ); + SetParameterDescription( "profile.classification.sigma", "Sigma value for leveling tolerance" ); SetDefaultParameterFloat( "profile.classification.sigma", 1 ); SetMinimumParameterFloatValue( "profile.classification.sigma", 0 ); diff --git a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesClassification.cxx b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesClassification.cxx index 08cee96fd75391c5c8fc31d70d7a761a40d334e4..002f7cf2bb93d8f86368a539237e0b475a41f5df 100644 --- a/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesClassification.cxx +++ b/Modules/Applications/AppMorphology/app/otbMorphologicalProfilesClassification.cxx @@ -118,8 +118,9 @@ private: // Strucring Element (Ball | Cross) AddParameter( ParameterType_Choice, "structype", "Structuring Element Type" ); SetParameterDescription( "structype", "Choice of the structuring element type" ); - AddChoice( "structype.cross", "Cross" ); AddChoice( "structype.ball", "Ball" ); + AddChoice( "structype.cross", "Cross" ); + AddParameter( ParameterType_Int, "radius", "Radius" );