GRAPH_START
  # This graph's name (only letters/numbers/underline/hifen are accepted)
  GRAPH_NAME "Graph_Name_1"

  # General vertice syntax:
  #
  #    VERTICE_START
  #
  #      # This vertice related class name (only letters/numbers/underline/hifen are accepted)
  #      VERTICE_NAME "Vertice_name"
  #
  #      # Vertice type
  #      VERTICE_TYPE "VERTICETYPE"
  #
  #      # Enable (YES) / disable (NO) the execution of the 2nd pass vertice task
  #      VERTICE_2ND_PASS "YES"
  #
  #      # Enable (YES) / disable (NO) the verctice output cache.
  #      VERTICE_OUT_CACHE "YES"
  #
  #      # Declares connections to other vertices outputs and gives them name aliases.
  #      # General format: VERTICE_CONNECTION "other vertice name" "connection alias"
  #      # Only letters/numbers/underline/hifen are accepted as names.
  #      VERTICE_CONNECTION "other_vertice_name_1" "connection_alias_1"
  #      VERTICE_CONNECTION "other_vertice_name_2" "connection_alias_2"
  #
  #      # Declares a input URI resouce used by this vertice.
  #      # General format: VERTICE_RESOURCE "context_resource_URI_alias" "vertice_URI_alias"
  #      # Only letters/numbers/underline/hifen are accepted as names.
  #      VERTICE_RESOURCE "raster_resource_1" "image"
  #
  #      # One or more specific vertice parameters
  #      # General format: VERTICE_PARAM "parameter_name" "parameter_value"
  #      # Only letters/numbers/underline/hifen are accepted as names.
  #      VERTICE_PARAM "parameter_name_1" "parameter_value_1"
  #      VERTICE_PARAM "parameter_name_2" "parameter_value_2"
  #
  #    VERTICE_END

  # Segmenter vertice - A vertice capable of creating segments (homogeneous areas represented by polygons) from an input image.
  #
  # Accepted parêmters:
  # STRATEGY - Segmenter strategy name (MEAN or BAATZ)
  # MINSEGMENTSIZE - A positive minimum segment size (pixels number - default: 100).
  # SEGMENTSSIMILARITYTHRESHOLD - Segments similarity treshold - Use lower values to merge only those segments that are more similar - Higher values will allow more segments to be merged - valid values range: positive values
  #
  # Accepted resources:
  # IMAGE - Input image URI
  #
  VERTICE_START
    VERTICE_NAME "Regions"
    VERTICE_TYPE "SEGMENTER"
    VERTICE_2ND_PASS "YES"
    VERTICE_OUT_CACHE "NO"
    VERTICE_RESOURCE "raster_resource_1" "IMAGE"
    VERTICE_PARAM "STRATEGY" "MEAN"
    VERTICE_PARAM "MIN_SEGMENT_SIZE" "100"
    VERTICE_PARAM "SEGMENTS_SIMILARITY_THRESHOLD" "0.03"
  VERTICE_END

  # Dummy vertice - A dummy vertice that only is cabable of propagate results from the input connected vertex.
  #
  # Accepted parêmters: none
  #
  # Accepted resources: none
  #
  VERTICE_START
    VERTICE_NAME "Same Regions"
    VERTICE_TYPE "DUMMY"
    VERTICE_2ND_PASS "YES"
    VERTICE_OUT_CACHE "NO"
    VERTICE_CONNECTION "Regions" "Regions"
  VERTICE_END
GRAPH_END