|updatedisclaimer| Imagery segmentation ==================== Grid skeletonization -------------------- Description ........... Parameters .......... ``Grid`` [raster] ``Method`` [selection] Options: * 0 --- [0] Standard * 1 --- [1] Hilditch's Algorithm * 2 --- [2] Channel Skeleton Default: *0* ``Initialisation`` [selection] Options: * 0 --- [0] Less than * 1 --- [1] Greater than Default: *0* ``Threshold (Init.)`` [number] Default: *0.0* ``Convergence`` [number] Default: *3.0* Outputs ....... ``Skeleton`` [raster] ``Skeleton`` [vector] Console usage ............. :: processing.runalg('saga:gridskeletonization', input, method, init_method, init_threshold, convergence, result, vector) See also ........ Seed generation --------------- Description ........... Parameters .......... ``Features`` [multipleinput: rasters] ``Bandwidth (Cells)`` [number] Default: *2* ``Type of Surface`` [selection] Options: * 0 --- [0] smoothed surface * 1 --- [1] variance (a) * 2 --- [2] variance (b) Default: *0* ``Extraction of...`` [selection] Options: * 0 --- [0] minima * 1 --- [1] maxima * 2 --- [2] minima and maxima Default: *0* ``Feature Aggregation`` [selection] Options: * 0 --- [0] additive * 1 --- [1] multiplicative Default: *0* ``Normalized`` [boolean] Default: *True* Outputs ....... ``Surface`` [raster] ``Seeds Grid`` [raster] ``Seeds`` [vector] Console usage ............. :: processing.runalg('saga:seedgeneration', grids, factor, type_surface, type_seeds, type_merge, normalize, surface, seeds_grid, seeds) See also ........ Simple region growing --------------------- Description ........... Parameters .......... ``Seeds`` [raster] ``Features`` [multipleinput: rasters] ``Method`` [selection] Options: * 0 --- [0] feature space and position * 1 --- [1] feature space Default: *0* ``Neighbourhood`` [selection] Options: * 0 --- [0] 4 (von Neumann) * 1 --- [1] 8 (Moore) Default: *0* ``Variance in Feature Space`` [number] Default: *1.0* ``Variance in Position Space`` [number] Default: *1.0* ``Threshold - Similarity`` [number] Default: *0.0* ``Refresh`` [boolean] Default: *True* ``Leaf Size (for Speed Optimisation)`` [number] Default: *256* Outputs ....... ``Segments`` [raster] ``Similarity`` [raster] ``Seeds`` [table] Console usage ............. :: processing.runalg('saga:simpleregiongrowing', seeds, features, method, neighbour, sig_1, sig_2, threshold, refresh, leafsize, segments, similarity, table) See also ........ Watershed segmentation ---------------------- Description ........... Parameters .......... ``Grid`` [raster] ``Output`` [selection] Options: * 0 --- [0] Seed Value * 1 --- [1] Segment ID Default: *0* ``Method`` [selection] Options: * 0 --- [0] Minima * 1 --- [1] Maxima Default: *0* ``Join Segments based on Threshold Value`` [selection] Options: * 0 --- [0] do not join * 1 --- [1] seed to saddle difference * 2 --- [2] seeds difference Default: *0* ``Threshold`` [number] Default: *0* ``Allow Edge Pixels to be Seeds`` [boolean] Default: *True* ``Borders`` [boolean] Default: *True* Outputs ....... ``Segments`` [raster] ``Seed Points`` [vector] ``Borders`` [raster] Console usage ............. :: processing.runalg('saga:watershedsegmentation', grid, output, down, join, threshold, edge, bborders, segments, seeds, borders) See also ........