ImageDev

ExpandLabelBoundaries

Performs a constrained dilation around objects of a label image.

Access to parameter description

For an introduction: This algorithm performs a label expansion around each object of a label image.

Its first aim is to expand labels obtained by a segmentation algorithm producing objects separated by a background line like MarkerBasedWatershed. It fills all black pixels around object boundaries with the value of the most present label among its height neighbors.


<b>(a)</b>
(a)
<b>(b)</b>
(b)
Figure 1. Label boundaries expansion applied to the result of MarkerBasedWatershed algorithm: (a) input label image, (b) image after label expansion


See also

Function Syntax

This function returns outputLabelImage.
// Function prototype
std::shared_ptr< iolink::ImageView > expandLabelBoundaries( std::shared_ptr< iolink::ImageView > inputLabelImage, ExpandLabelBoundaries::Neighborhood neighborhood, std::shared_ptr< iolink::ImageView > outputLabelImage = NULL );

Class Syntax

Parameters

Parameter Name Description Type Supported Values Default Value
input
inputLabelImage
The input label image. Image Label nullptr
input
neighborhood
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
CONNECTIVITY_6 The structuring element is composed of voxels with a common face with the voxel of interest.
CONNECTIVITY_18 The structuring element is composed of voxels with at least one common edge.
CONNECTIVITY_26 The structuring element is a full cube.
Enumeration CONNECTIVITY_26
output
outputLabelImage
The output label image. Its dimensions are forced to the same values as the input image. Image nullptr

Object Examples

auto foam_sep_label = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam_sep_label.vip" );

ExpandLabelBoundaries expandLabelBoundariesAlgo;
expandLabelBoundariesAlgo.setInputLabelImage( foam_sep_label );
expandLabelBoundariesAlgo.setNeighborhood( ExpandLabelBoundaries::Neighborhood::CONNECTIVITY_26 );
expandLabelBoundariesAlgo.execute();

std::cout << "outputLabelImage:" << expandLabelBoundariesAlgo.outputLabelImage()->toString();

Function Examples

auto foam_sep_label = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam_sep_label.vip" );

auto result = expandLabelBoundaries( foam_sep_label, ExpandLabelBoundaries::Neighborhood::CONNECTIVITY_26 );

std::cout << "outputLabelImage:" << result->toString();