ExpandLabelBoundaries
Performs a constrained dilation around objects of a label image.
Access to parameter description
For an introduction:
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.
Figure 1. Label boundaries expansion applied to the result of MarkerBasedWatershed
algorithm: (a) input label image, (b) image after label expansion
See also
Access to parameter description
For an introduction:
- section Mathematical Morphology
- section Introduction To Dilation
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.
![]() (a) |
![]() (b) |
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 | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
inputLabelImage |
The input label image. | Image | Label | nullptr | ||||||
![]() |
neighborhood |
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
|
Enumeration | CONNECTIVITY_26 | |||||||
![]() |
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();