This algorithm consists of applying successive erosions until all objects of the input image disappear
(Xi images below).
Then each erosion step is reconstructed into the previous erosion step (Yi image below).
The difference between the eroded image Xi and the reconstructed image Yi is the centroid of objects
that disappeared at the erosion step number i.
This algorithm enables counting the number of convex particles, even if some of them are touching each
other, as long as the pseudo-centre of each particle is outside of other particles.
// Function prototype.publicstaticIOLink.ImageViewUltimateErosion(IOLink.ImageView inputBinaryImage,UltimateErosion.Neighborhood neighborhood =ImageDev.UltimateErosion.Neighborhood.CONNECTIVITY_26,IOLink.ImageView outputBinaryImage =null);
Class Syntax
// Command constructor.UltimateErosion();/// Gets the inputBinaryImage parameter./// The binary input image.
std::shared_ptr< iolink::ImageView> inputBinaryImage()const;/// Sets the inputBinaryImage parameter./// The binary input image.void setInputBinaryImage( std::shared_ptr< iolink::ImageView> inputBinaryImage );/// Gets the neighborhood parameter./// The 3D neighborhood configuration. This parameter is ignored with a 2D input image.UltimateErosion::Neighborhood neighborhood()const;/// Sets the neighborhood parameter./// The 3D neighborhood configuration. This parameter is ignored with a 2D input image.void setNeighborhood(constUltimateErosion::Neighborhood& neighborhood );/// Gets the outputBinaryImage parameter./// The binary output image. Its dimensions and type are forced to the same values as the input.
std::shared_ptr< iolink::ImageView> outputBinaryImage()const;/// Sets the outputBinaryImage parameter./// The binary output image. Its dimensions and type are forced to the same values as the input.void setOutputBinaryImage( std::shared_ptr< iolink::ImageView> outputBinaryImage );// Method to launch the command.void execute();
# Property of the inputBinaryImage parameter.UltimateErosion.input_binary_image
# Property of the neighborhood parameter.UltimateErosion.neighborhood
# Property of the outputBinaryImage parameter.UltimateErosion.output_binary_image
// Method to launch the command.
execute()
// Command constructor.UltimateErosion()// Property of the inputBinaryImage parameter.UltimateErosion.inputBinaryImage
// Property of the neighborhood parameter.UltimateErosion.neighborhood
// Property of the outputBinaryImage parameter.UltimateErosion.outputBinaryImage
// Method to launch the command.Execute()
Parameters
Parameter Name
Description
Type
Supported Values
Default Value
inputBinaryImage
The binary input image.
Image
Binary
nullptr
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
outputBinaryImage
The binary 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_binary_image
The binary input image.
image
Binary
None
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_binary_image
The binary 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
inputBinaryImage
The binary input image.
Image
Binary
null
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
outputBinaryImage
The binary output image. Its dimensions and type are forced to the same values as the input.