Skip to content
Snippets Groups Projects
Commit d04a99d3 authored by Ludovic Hussonnois's avatar Ludovic Hussonnois
Browse files

DOC: Correct parameters documentation.

parent 85f49a8d
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
......@@ -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" );
......
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