This algorithm is analogous to the FillHoles3d 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.
Reference: P. Soille, Morphological Image Analysis. Principles and Applications, Second Edition,
Springer-Verlag, Berlin, p.208, 2003.
// Function prototype.publicstaticIOLink.ImageViewGrayscaleFillHoles3d(IOLink.ImageView inputImage,double thresholdFillingValue =1,GrayscaleFillHoles3d.Neighborhood neighborhood =ImageDev.GrayscaleFillHoles3d.Neighborhood.CONNECTIVITY_26,IOLink.ImageView outputImage =null);
Class Syntax
// Command constructor.GrayscaleFillHoles3d();/// 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 3D neighborhood configuration.GrayscaleFillHoles3d::Neighborhood neighborhood()const;/// Sets the neighborhood parameter./// The 3D neighborhood configuration.void setNeighborhood(constGrayscaleFillHoles3d::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.GrayscaleFillHoles3d.input_image
# Property of the thresholdFillingValue parameter.GrayscaleFillHoles3d.threshold_filling_value
# Property of the neighborhood parameter.GrayscaleFillHoles3d.neighborhood
# Property of the outputImage parameter.GrayscaleFillHoles3d.output_image
// Method to launch the command.
execute()
// Command constructor.GrayscaleFillHoles3d()// Property of the inputImage parameter.GrayscaleFillHoles3d.inputImage
// Property of the thresholdFillingValue parameter.GrayscaleFillHoles3d.thresholdFillingValue
// Property of the neighborhood parameter.GrayscaleFillHoles3d.neighborhood
// Property of the outputImage parameter.GrayscaleFillHoles3d.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
neighborhood
The 3D neighborhood configuration.
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
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
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
neighborhood
The 3D neighborhood configuration.
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
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
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
neighborhood
The 3D neighborhood configuration.
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
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
outputImage
The grayscale output image. Its dimensions and type are forced to the same values as the input.