Browse Source

i.segment: watershed method disabled, see https://trac.osgeo.org/grass/ticket/3181

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@69692 15284696-431f-4ddb-bdfa-cd5b030d7da7
Martin Landa 8 years ago
parent
commit
d01237a762
1 changed files with 5 additions and 0 deletions
  1. 5 0
      imagery/i.segment/parse_args.c

+ 5 - 0
imagery/i.segment/parse_args.c

@@ -58,7 +58,12 @@ int parse_args(int argc, char *argv[], struct globals *globals)
     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");