An opening by reconstruction consists in applying an erosion followed by a morphological reconstruction. In
the binary case, opening by reconstruction can be used for removing small objects without modifying edges
of the large ones. In the grayscale case, opening by reconstruction can be used for performing a Top Hat by
reconstruction for detecting bright small structures without getting artifacts from the boundary
concavities of the large ones.
Its 2D binary behavior is illustrated in the
OpeningByReconstruction2d documentation (Figure 1).
This algorithm supports two modes: a fast mode that combines erosions using different
neighborhoods, and a precise mode (slower) that ensures a real sphere structuring element. The mode can be
selected with the precision parameter.
// Function prototype.publicstaticIOLink.ImageViewOpeningBallByReconstruction3d(IOLink.ImageView inputImage,UInt32 kernelRadius =3,OpeningBallByReconstruction3d.Precision precision =ImageDev.OpeningBallByReconstruction3d.Precision.FASTER,IOLink.ImageView outputImage =null);
Class Syntax
// Command constructor.OpeningBallByReconstruction3d();/// Gets the inputImage parameter./// The input image
std::shared_ptr< iolink::ImageView> inputImage()const;/// Sets the inputImage parameter./// The input imagevoid setInputImage( std::shared_ptr< iolink::ImageView> inputImage );/// Gets the kernelRadius parameter./// The length of the sphere radius in voxels.uint32_t kernelRadius()const;/// Sets the kernelRadius parameter./// The length of the sphere radius in voxels.void setKernelRadius(constuint32_t& kernelRadius );/// Gets the precision parameter./// The precision of the computation method.OpeningBallByReconstruction3d::Precision precision()const;/// Sets the precision parameter./// The precision of the computation method.void setPrecision(constOpeningBallByReconstruction3d::Precision& precision );/// Gets the outputImage parameter./// The output image. Its dimensions and type are forced to the same values as the input image.
std::shared_ptr< iolink::ImageView> outputImage()const;/// Sets the outputImage parameter./// The output image. Its dimensions and type are forced to the same values as the input image.void setOutputImage( std::shared_ptr< iolink::ImageView> outputImage );// Method to launch the command.void execute();
# Property of the inputImage parameter.OpeningBallByReconstruction3d.input_image
# Property of the kernelRadius parameter.OpeningBallByReconstruction3d.kernel_radius
# Property of the precision parameter.OpeningBallByReconstruction3d.precision
# Property of the outputImage parameter.OpeningBallByReconstruction3d.output_image
// Method to launch the command.
execute()
// Command constructor.OpeningBallByReconstruction3d()// Property of the inputImage parameter.OpeningBallByReconstruction3d.inputImage
// Property of the kernelRadius parameter.OpeningBallByReconstruction3d.kernelRadius
// Property of the precision parameter.OpeningBallByReconstruction3d.precision
// Property of the outputImage parameter.OpeningBallByReconstruction3d.outputImage
// Method to launch the command.Execute()
Parameters
Parameter Name
Description
Type
Supported Values
Default Value
inputImage
The input image
Image
Binary, Label or Grayscale
nullptr
kernelRadius
The length of the sphere radius in voxels.
UInt32
>=1
3
precision
The precision of the computation method.
FASTER
The operation is computed with the fast mode, which approximates a circular structuring element by combining erosions using 6, 18 and 26 neighborhoods.
PRECISE
The operation is computed with the precise mode (slower), which ensures a real spherical structuring element.
Enumeration
FASTER
outputImage
The output image. Its dimensions and type are forced to the same values as the input image.
Image
nullptr
Parameter Name
Description
Type
Supported Values
Default Value
input_image
The input image
image
Binary, Label or Grayscale
None
kernel_radius
The length of the sphere radius in voxels.
uint32
>=1
3
precision
The precision of the computation method.
FASTER
The operation is computed with the fast mode, which approximates a circular structuring element by combining erosions using 6, 18 and 26 neighborhoods.
PRECISE
The operation is computed with the precise mode (slower), which ensures a real spherical structuring element.
enumeration
FASTER
output_image
The output image. Its dimensions and type are forced to the same values as the input image.
image
None
Parameter Name
Description
Type
Supported Values
Default Value
inputImage
The input image
Image
Binary, Label or Grayscale
null
kernelRadius
The length of the sphere radius in voxels.
UInt32
>=1
3
precision
The precision of the computation method.
FASTER
The operation is computed with the fast mode, which approximates a circular structuring element by combining erosions using 6, 18 and 26 neighborhoods.
PRECISE
The operation is computed with the precise mode (slower), which ensures a real spherical structuring element.
Enumeration
FASTER
outputImage
The output image. Its dimensions and type are forced to the same values as the input image.