1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
WATERSHED SEGMENTATION
======================
Description
-----------
Parameters
----------
- ``Grid[Raster]``:
- ``Output[Selection]``:
- ``Method[Selection]``:
- ``Join Segments based on Threshold Value[Selection]``:
- ``Threshold[Number]``:
- ``Allow Edge Pixels to be Seeds[Boolean]``:
- ``Borders[Boolean]``:
Outputs
-------
- ``Segments[Raster]``:
- ``Seed Points[Vector]``:
- ``Borders[Raster]``:
See also
---------
Console usage
-------------
::
processing.runalg('saga:watershedsegmentation', grid, output, down, join, threshold, edge, bborders, segments, seeds, borders)
Available options for selection parameters:
output(Output)
0 - [0] Seed Value
1 - [1] Segment ID
down(Method)
0 - [0] Minima
1 - [1] Maxima
join(Join Segments based on Threshold Value)
0 - [0] do not join
1 - [1] seed to saddle difference
2 - [2] seeds difference
|