Exact Large-Scale Mean-Shift segmentation, step 3 (optional)
Brief Description
This application performs the third (optional) step of the exact Large-Scale Mean-Shift segmentation workflow [1].
Tags
Segmentation, LSMS
Long Description
Given a segmentation result (can be the out output parameter of the LSMSSegmentation application [2]) and the original image, it will merge segments whose size in pixels is lower than minsize parameter with the adjacent segments with the adjacent segment with closest radiometry and acceptable size.
Small segments will be processed by increasing size: first all segments for which area is equal to 1 pixel will be merged with adjacent segments, then all segments of area equal to 2 pixels will be processed, until segments of area minsize. For large images one can use the tilesizex and tilesizey parameters for tile-wise processing, with the guarantees of identical results.
The output of this application can be passed to the LSMSVectorization application [3] to complete the LSMS workflow.
Parameters
Input image (in): The input image, containing initial spectral signatures corresponding to the segmented image (inseg).
Segmented image (inseg): Segmented image where each pixel value is the unique integer label of the segment it belongs to.
Output Image (out): The output image. The output image is the segmented image where the minimal segments have been merged. An ecoding of uint32 is advised.
Minimum Segment Size (minsize): Minimum Segment Size. If, after the segmentation, a segment is of size lower than this criterion, the segment is merged with the segment that has the closest sepctral signature.
Size of tiles in pixel (X-axis) (tilesizex): Size of tiles along the X-axis for tile-wise processing.
Size of tiles in pixel (Y-axis) (tilesizey): Size of tiles along the Y-axis for tile-wise processing.
Available RAM (Mb) (ram): Available memory for processing (in MB)
Load otb application from xml file (inxml): Load otb application from xml file
Save otb application to xml file (outxml): Save otb application to xml file
Limitations
This application is part of the Large-Scale Mean-Shift segmentation workflow (LSMS) and may not be suited for any other purpose. This application is not compatible with in-memory connection since it does its own internal streaming.
Authors
David Youssefi
See also
[1] Michel, J., Youssefi, D., & Grizonnet, M. (2015). Stable mean-shift algorithm and its application to the segmentation of arbitrarily large remote sensing images. IEEE Transactions on Geoscience and Remote Sensing, 53(2), 952-964.
[2] LSMSegmentation
[3] LSMSVectorization
Example of use
in: smooth.tif
inseg: segmentation.tif
out: merged.tif
minsize: 20
tilesizex: 256
tilesizey: 256
otbcli_LSMSSmallRegionsMerging -in smooth.tif -inseg segmentation.tif -out merged.tif -minsize 20 -tilesizex 256 -tilesizey 256