[GRASS-SVN] r69693 - grass/branches/releasebranch_7_2/imagery/i.segment

svn_grass at osgeo.org svn_grass at osgeo.org
Tue Oct 11 03:56:05 PDT 2016


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

Modified:
   grass/branches/releasebranch_7_2/imagery/i.segment/parse_args.c
Log:
i.segment: watershed and mean shift methods disabled, see #3181

Modified: grass/branches/releasebranch_7_2/imagery/i.segment/parse_args.c
===================================================================
--- grass/branches/releasebranch_7_2/imagery/i.segment/parse_args.c	2016-10-11 10:51:04 UTC (rev 69692)
+++ grass/branches/releasebranch_7_2/imagery/i.segment/parse_args.c	2016-10-11 10:56:04 UTC (rev 69693)
@@ -37,7 +37,12 @@
     method->type = TYPE_STRING;
     method->required = NO;
     method->answer = "region_growing";
+    method->options = "region_growing";
+    /*
+      Watershed and Mean Shift methods 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