This algorithm rebuilds a set of objects identified by markers and retrieves only the objects that contain at
least one marker.
Successive dilations are performed on the markers, each dilation being followed by an intersection with
the original image until convergence (idempotence).
This iterative process is called a geodesic dilation.
It guarantees that a dilated marker will not merge with a particle other than the one it marks.
Geodesic dilation is different from a large dilation of a given size followed by an intersection with
the original image because a dilated marker may hit close particles that are not marked for reconstruction.
This difference is illustrated in Figure 1.
For example, given an erosion that eliminated the small particles of an image, this algorithm can rebuild
the original shapes of the remaining particles if the eroded set is used as the markers. This sequence
is called an opening by reconstruction.
Figure 1. Comparison between reconstruction from markers and dilation/intersection
// Function prototype.publicstaticIOLink.ImageViewReconstructionFromMarkers3d(IOLink.ImageView inputImage,IOLink.ImageView inputMarkerImage,ReconstructionFromMarkers3d.Neighborhood neighborhood =ImageDev.ReconstructionFromMarkers3d.Neighborhood.CONNECTIVITY_26,IOLink.ImageView outputImage =null);
Class Syntax
// Command constructor.ReconstructionFromMarkers3d();/// Gets the inputImage parameter./// The binary mask image constraining reconstruction.
std::shared_ptr< iolink::ImageView> inputImage()const;/// Sets the inputImage parameter./// The binary mask image constraining reconstruction.void setInputImage( std::shared_ptr< iolink::ImageView> inputImage );/// Gets the inputMarkerImage parameter./// The binary marker image containing seeds for reconstruction. It must have the same dimensions and type as the input image.
std::shared_ptr< iolink::ImageView> inputMarkerImage()const;/// Sets the inputMarkerImage parameter./// The binary marker image containing seeds for reconstruction. It must have the same dimensions and type as the input image.void setInputMarkerImage( std::shared_ptr< iolink::ImageView> inputMarkerImage );/// Gets the neighborhood parameter./// The 3D neighborhood configuration.ReconstructionFromMarkers3d::Neighborhood neighborhood()const;/// Sets the neighborhood parameter./// The 3D neighborhood configuration.void setNeighborhood(constReconstructionFromMarkers3d::Neighborhood& neighborhood );/// Gets the outputImage parameter./// The binary 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 binary 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.ReconstructionFromMarkers3d.input_image
# Property of the inputMarkerImage parameter.ReconstructionFromMarkers3d.input_marker_image
# Property of the neighborhood parameter.ReconstructionFromMarkers3d.neighborhood
# Property of the outputImage parameter.ReconstructionFromMarkers3d.output_image
// Method to launch the command.
execute()
// Command constructor.ReconstructionFromMarkers3d()// Property of the inputImage parameter.ReconstructionFromMarkers3d.inputImage
// Property of the inputMarkerImage parameter.ReconstructionFromMarkers3d.inputMarkerImage
// Property of the neighborhood parameter.ReconstructionFromMarkers3d.neighborhood
// Property of the outputImage parameter.ReconstructionFromMarkers3d.outputImage
// Method to launch the command.Execute()
Parameters
Parameter Name
Description
Type
Supported Values
Default Value
inputImage
The binary mask image constraining reconstruction.
Image
Binary
nullptr
inputMarkerImage
The binary marker image containing seeds for reconstruction. It must have the same dimensions and type as the input image.
Image
Binary
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
outputImage
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_image
The binary mask image constraining reconstruction.
image
Binary
None
input_marker_image
The binary marker image containing seeds for reconstruction. It must have the same dimensions and type as the input image.
image
Binary
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
output_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
inputImage
The binary mask image constraining reconstruction.
Image
Binary
null
inputMarkerImage
The binary marker image containing seeds for reconstruction. It must have the same dimensions and type as the input image.
Image
Binary
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
outputImage
The binary output image. Its dimensions and type are forced to the same values as the input.