[GRASS-SVN] r69692 - grass/trunk/imagery/i.segment

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Oct 11 03:51:04 PDT 2016


Author: martinl
Date: 2016-10-11 03:51:04 -0700 (Tue, 11 Oct 2016)
New Revision: 69692

Modified:
   grass/trunk/imagery/i.segment/parse_args.c
Log:
i.segment: watershed method disabled, see #3181

Modified: grass/trunk/imagery/i.segment/parse_args.c
===================================================================
--- grass/trunk/imagery/i.segment/parse_args.c	2016-10-10 16:44:53 UTC (rev 69691)
+++ grass/trunk/imagery/i.segment/parse_args.c	2016-10-11 10:51:04 UTC (rev 69692)
@@ -58,7 +58,12 @@
     method->type = TYPE_STRING;
     method->required = NO;
     method->answer = "region_growing";
+    method->options = "region_growing,mean_shift";
+    /*
+      Watershed method disabled, it's not implemented yet, see 
+      https://trac.osgeo.org/grass/ticket/3181
     method->options = "region_growing,mean_shift,watershed";
+    */
     method->description = _("Segmentation method");
     method->guisection = _("Settings");
 



More information about the grass-commit mailing list