ClosingDiskByReconstruction2d
Performs a three-dimensional closing by reconstruction with a structuring element matching with a disk.
Access to parameter description
A closing by reconstruction consists in applying a dilation followed by a morphological reconstruction. In the binary case, closing by reconstruction can be used for filling small holes 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 dark small structures without getting artifacts from the boundary concavities of large structures.
Its 2D grayscale behavior is illustrated in the ClosingByReconstruction2d documentation (Figure 1).
See also
Access to parameter description
A closing by reconstruction consists in applying a dilation followed by a morphological reconstruction. In the binary case, closing by reconstruction can be used for filling small holes 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 dark small structures without getting artifacts from the boundary concavities of large structures.
Its 2D grayscale behavior is illustrated in the ClosingByReconstruction2d documentation (Figure 1).
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > closingDiskByReconstruction2d( std::shared_ptr< iolink::ImageView > inputImage, uint32_t kernelRadius, ClosingDiskByReconstruction2d::Precision precision, std::shared_ptr< iolink::ImageView > outputImage = NULL );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||
---|---|---|---|---|---|---|---|---|---|
![]() |
inputImage |
The input image. | Image | Binary, Label or Grayscale | nullptr | ||||
![]() |
kernelRadius |
The length of the disk radius in pixels. | UInt32 | >=1 | 3 | ||||
![]() |
precision |
The precision of the computation method.
|
Enumeration | FASTER | |||||
![]() |
outputImage |
The output image. Its dimensions and type are forced to the same values as the input image. | Image | nullptr |
Object Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); ClosingDiskByReconstruction2d closingDiskByReconstruction2dAlgo; closingDiskByReconstruction2dAlgo.setInputImage( polystyrene ); closingDiskByReconstruction2dAlgo.setKernelRadius( 3 ); closingDiskByReconstruction2dAlgo.setPrecision( ClosingDiskByReconstruction2d::Precision::FASTER ); closingDiskByReconstruction2dAlgo.execute(); std::cout << "outputImage:" << closingDiskByReconstruction2dAlgo.outputImage()->toString();
Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = closingDiskByReconstruction2d( polystyrene, 3, ClosingDiskByReconstruction2d::Precision::FASTER ); std::cout << "outputImage:" << result->toString();