You are looking the documentation of a development version. The release version is available at master.

i2_obia advanced uses

Input segmentation

The OBIA workflow accept three kind of input segmentation. All of them requires to use the obia_segmentation_path parameter.

This parameter accept three values:

  • None or parameter not in configuration file: the workflow use SLIC to produce the segmentation

  • path/segmentation_name.tif: a tif image covering all tiles requested. In this case, the segmentation will be vectorized and clipped over each tiles.

  • path/segmentation_name.shp : a vector file (shp or sqlite).

In both last cases, the segmentation can be sparse. For tif input, the no-data must be set to 0. For vector data, holes are simply not considered. There is no filtering done in OBIA, then the segmentation must be ready to use before launching the chain.

Eco-climatic regions

The use of eco-climatic regions is available with OBIA. As for pixel classification, samples are associated with an unique region. More information about how samples and segments are associated to regions.

A additionnal parameter is available: region_priority, to fix the order of regions are viewed. Otherwise, the numerical order is used.

Zonal Statistics

The parameter stats_used allow the user to choose which zonal statistics are used for learning and classification steps. Obviously, the statistics used for learning must be the same for classification.

There are five statistics always computed by OTB application, but by default only the mean is used. This parameter is limited by default as the user must be careful with the dimension of data generated. Look at this section for more information.

To enable the choose of statistics, simply add in the configuration file the parameter stats_used in the obia section.

obia:{

    buffer_size:2000
    stats_used: ["mean", "std"]
    }