This algorithm is analogous to the FillHoles2d which is dedicated to the binary case.
It fills darks areas that are not connected to the image borders with the maximal gray level surrounding them.
This algorithm uses the grayscale reconstruction by erosion algorithm. The marker image used by the
reconstruction is generated with gray levels equal to:
The corresponding input image gray level on image borders,
The "threshold filling value" inside the image.
The thresholdFillingValue parameter sets the maximum gray level from which the bottom of a valley is
considered as a hole.
Figure 1. Original image, gray hole fill result (hole level = image maximum)
Reference: P. Soille, Morphological Image Analysis. Principles and Applications, Second Edition,
Springer-Verlag, Berlin, p.208, 2003.
// Function prototype.publicstaticIOLink.ImageViewGrayscaleFillHoles2d(IOLink.ImageView inputImage,double thresholdFillingValue =1,GrayscaleFillHoles2d.Neighborhood neighborhood =ImageDev.GrayscaleFillHoles2d.Neighborhood.CONNECTIVITY_8,IOLink.ImageView outputImage =null);
Class Syntax
// Command constructor.GrayscaleFillHoles2d();/// Gets the inputImage parameter./// The grayscale input image.
std::shared_ptr< iolink::ImageView> inputImage()const;/// Sets the inputImage parameter./// The grayscale input image.void setInputImage( std::shared_ptr< iolink::ImageView> inputImage );/// Gets the thresholdFillingValue parameter./// The value filling the marker image inside (the gray level under which valleys are filled). The common usage is to set it at the image maximum intensity.double thresholdFillingValue()const;/// Sets the thresholdFillingValue parameter./// The value filling the marker image inside (the gray level under which valleys are filled). The common usage is to set it at the image maximum intensity.void setThresholdFillingValue(constdouble& thresholdFillingValue );/// Gets the neighborhood parameter./// The 2D neighborhood configuration for performing erosions of the numerical reconstruction.GrayscaleFillHoles2d::Neighborhood neighborhood()const;/// Sets the neighborhood parameter./// The 2D neighborhood configuration for performing erosions of the numerical reconstruction.void setNeighborhood(constGrayscaleFillHoles2d::Neighborhood& neighborhood );/// Gets the outputImage parameter./// The grayscale output image. Its dimensions and type are forced to the same values as the input.
std::shared_ptr< iolink::ImageView> outputImage()const;/// Sets the outputImage parameter./// The grayscale output image. Its dimensions and type are forced to the same values as the input.void setOutputImage( std::shared_ptr< iolink::ImageView> outputImage );// Method to launch the command.void execute();
# Property of the inputImage parameter.GrayscaleFillHoles2d.input_image
# Property of the thresholdFillingValue parameter.GrayscaleFillHoles2d.threshold_filling_value
# Property of the neighborhood parameter.GrayscaleFillHoles2d.neighborhood
# Property of the outputImage parameter.GrayscaleFillHoles2d.output_image
// Method to launch the command.
execute()
// Command constructor.GrayscaleFillHoles2d()// Property of the inputImage parameter.GrayscaleFillHoles2d.inputImage
// Property of the thresholdFillingValue parameter.GrayscaleFillHoles2d.thresholdFillingValue
// Property of the neighborhood parameter.GrayscaleFillHoles2d.neighborhood
// Property of the outputImage parameter.GrayscaleFillHoles2d.outputImage
// Method to launch the command.Execute()
Parameters
Parameter Name
Description
Type
Supported Values
Default Value
inputImage
The grayscale input image.
Image
Binary, Label or Grayscale
nullptr
thresholdFillingValue
The value filling the marker image inside (the gray level under which valleys are filled). The common usage is to set it at the image maximum intensity.
Float64
Any value
1
neighborhood
The 2D neighborhood configuration for performing erosions of the numerical reconstruction.
CONNECTIVITY_8
The structuring element is a square.
CONNECTIVITY_4
The structuring element is a cross.
Enumeration
CONNECTIVITY_8
outputImage
The grayscale output image. Its dimensions and type are forced to the same values as the input.
Image
nullptr
Parameter Name
Description
Type
Supported Values
Default Value
input_image
The grayscale input image.
image
Binary, Label or Grayscale
None
threshold_filling_value
The value filling the marker image inside (the gray level under which valleys are filled). The common usage is to set it at the image maximum intensity.
float64
Any value
1
neighborhood
The 2D neighborhood configuration for performing erosions of the numerical reconstruction.
CONNECTIVITY_8
The structuring element is a square.
CONNECTIVITY_4
The structuring element is a cross.
enumeration
CONNECTIVITY_8
output_image
The grayscale output image. Its dimensions and type are forced to the same values as the input.
image
None
Parameter Name
Description
Type
Supported Values
Default Value
inputImage
The grayscale input image.
Image
Binary, Label or Grayscale
null
thresholdFillingValue
The value filling the marker image inside (the gray level under which valleys are filled). The common usage is to set it at the image maximum intensity.
Float64
Any value
1
neighborhood
The 2D neighborhood configuration for performing erosions of the numerical reconstruction.
CONNECTIVITY_8
The structuring element is a square.
CONNECTIVITY_4
The structuring element is a cross.
Enumeration
CONNECTIVITY_8
outputImage
The grayscale output image. Its dimensions and type are forced to the same values as the input.