Skip to content
Snippets Groups Projects

HaralickTextureExtraction: Clarify the definition of the parameters xrad and yrad

Merged Julien Osman requested to merge document-haralick-app into develop
1 file
+ 6
2
Compare changes
  • Side-by-side
  • Inline
@@ -131,11 +131,15 @@ private:
"texture parameters.");
AddParameter(ParameterType_Int, "parameters.xrad", "X Radius");
SetParameterDescription("parameters.xrad", "X Radius");
SetParameterDescription("parameters.xrad",
"X Radius of the neighborhood window. The formula used to retrieve the size of "
"the window is ``2 * radius + 1``.");
SetDefaultParameterInt("parameters.xrad", 2);
AddParameter(ParameterType_Int, "parameters.yrad", "Y Radius");
SetParameterDescription("parameters.yrad", "Y Radius");
SetParameterDescription("parameters.yrad",
"Y Radius of the neighborhood window. The formula used to retrieve the size of "
"the window is ``2 * radius + 1``.");
SetDefaultParameterInt("parameters.yrad", 2);
AddParameter(ParameterType_Int, "parameters.xoff", "X Offset");
Loading