Changes between Version 8 and Version 9 of GSoC/2016


Ignore:
Timestamp:
Feb 19, 2016, 4:34:09 AM (8 years ago)
Author:
mlennert
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GSoC/2016

    v8 v9  
    200200 * Co-mentors: Vaclav Petras, Anna Petrasova
    201201
    202 ===Additional segmentation algorithms for i.segment===
     202=== Additional segmentation algorithms for i.segment ===
    203203
    204204GRASS GIS has the [https://grass.osgeo.org/grass70/manuals/i.segment.html i.segment] which provides the possibility to segment an image into objects. This is a basic step in object-based image analysis (OBIA). Currently, the module only provides one segmentation algorithm: region-growing. Many others exist: mean-shift, split-window, watershed, etc. The code of i.segment was structured in a way that allows addition of other algorithms. The core of the GSoC project would thus be to add a series of these algorithms. In addition, the current implementation only uses distance within the multidimensional space of all input bands as the criteria whether to merge segments or not. Adding shape as an additional merge criteria would be helpful. A first implementation exists in the code, but is not functional as such. If time permits, the student should implement this feature.