[GRASS-SVN] r69062 - sandbox/metz/i.segment.ms
svn_grass at osgeo.org
svn_grass at osgeo.org
Tue Aug 2 12:44:57 PDT 2016
Author: mmetz
Date: 2016-08-02 12:44:57 -0700 (Tue, 02 Aug 2016)
New Revision: 69062
Modified:
sandbox/metz/i.segment.ms/i.segment.ms.html
sandbox/metz/i.segment.ms/parse_args.c
Log:
sandbox: i.segment + mean shift: polishing UI, updating manual
Modified: sandbox/metz/i.segment.ms/i.segment.ms.html
===================================================================
--- sandbox/metz/i.segment.ms/i.segment.ms.html 2016-08-02 19:34:24 UTC (rev 69061)
+++ sandbox/metz/i.segment.ms/i.segment.ms.html 2016-08-02 19:44:57 UTC (rev 69062)
@@ -112,7 +112,9 @@
than 1 will add one additional pass to the processing. During the
final pass, the threshold is ignored for any segments smaller then
the set size, thus forcing very small segments to merge with their
-most similar neighbor.
+most similar neighbor. A minimum segment size larger than 1 is
+recommended when using adaptive bandwith selected with the <b>-a</b>
+flag.
<h2>EXAMPLES</h2>
Modified: sandbox/metz/i.segment.ms/parse_args.c
===================================================================
--- sandbox/metz/i.segment.ms/parse_args.c 2016-08-02 19:34:24 UTC (rev 69061)
+++ sandbox/metz/i.segment.ms/parse_args.c 2016-08-02 19:44:57 UTC (rev 69062)
@@ -127,6 +127,7 @@
seeds->key = "seeds";
seeds->required = NO;
seeds->description = _("Name for input raster map with starting seeds");
+ seeds->guisection = _("Settings");
/* Polygon constraints. */
bounds = G_define_standard_option(G_OPT_R_INPUT);
@@ -135,12 +136,14 @@
bounds->label = _("Name of input bounding/constraining raster map");
bounds->description =
_("Must be integer values, each area will be segmented independent of the others");
+ bounds->guisection = _("Settings");
gof = G_define_standard_option(G_OPT_R_OUTPUT);
gof->key = "goodness";
gof->required = NO;
gof->description =
_("Name for output goodness of fit estimate map");
+ gof->guisection = _("Settings");
diagonal = G_define_flag();
diagonal->key = 'd';
More information about the grass-commit
mailing list