ClosingLine2d
Performs a two-dimensional closing using a structuring element matching with a line.
Access to parameter description
For an introduction:
The closing is performed by using a linear structuring element. The direction of 0 degrees is horizontal and to the left, and the angles are calculated counter-clockwise.
With a classic implementation, morphological closing systematically considers areas out of the image as a replication of the image borders at each step of the algorithm. Therefore, when applying a closing, some objects close to the image borders may be connected to the border at the dilation step and not be retro propagated after the dilation, while one would expect to keep them disconnected from the border. The borderPolicy parameter manages this case. The default mode, LIMITED, corresponds to the classic behavior. The EXTENDED mode properly manages image borders by extending them by a size equal to the structuring element's. This mode can be slower and more memory consuming, especially when the structuring element size is high.
This option is illustrated in the Closing2d documentation (Figure 2).
See also
Access to parameter description
For an introduction:
- section Mathematical Morphology
- section Introduction To Closing
The closing is performed by using a linear structuring element. The direction of 0 degrees is horizontal and to the left, and the angles are calculated counter-clockwise.
With a classic implementation, morphological closing systematically considers areas out of the image as a replication of the image borders at each step of the algorithm. Therefore, when applying a closing, some objects close to the image borders may be connected to the border at the dilation step and not be retro propagated after the dilation, while one would expect to keep them disconnected from the border. The borderPolicy parameter manages this case. The default mode, LIMITED, corresponds to the classic behavior. The EXTENDED mode properly manages image borders by extending them by a size equal to the structuring element's. This mode can be slower and more memory consuming, especially when the structuring element size is high.
This option is illustrated in the Closing2d documentation (Figure 2).
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > closingLine2d( std::shared_ptr< iolink::ImageView > inputImage, double orientationAngle, uint32_t kernelRadius, ClosingLine2d::BorderPolicy borderPolicy, std::shared_ptr< iolink::ImageView > outputImage = NULL );
This function returns outputImage.
// Function prototype. closing_line_2d( input_image, orientation_angle = 10, kernel_radius = 3, border_policy = ClosingLine2d.BorderPolicy.LIMITED, output_image = None )
This function returns outputImage.
// Function prototype. public static IOLink.ImageView ClosingLine2d( IOLink.ImageView inputImage, double orientationAngle = 10, UInt32 kernelRadius = 3, ClosingLine2d.BorderPolicy borderPolicy = ImageDev.ClosingLine2d.BorderPolicy.LIMITED, IOLink.ImageView outputImage = null );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||
---|---|---|---|---|---|---|---|---|---|
inputImage |
The input image. The image type can be integer or float. | Image | Binary, Label, Grayscale or Multispectral | nullptr | |||||
borderPolicy |
The border policy to apply.
|
Enumeration | LIMITED | ||||||
orientationAngle |
The angle of orientation in degrees. | Float64 | Any value | 10 | |||||
kernelRadius |
The length of the linear structuring element in pixels. | UInt32 | >=1 | 3 | |||||
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. The image type can be integer or float. | image | Binary, Label, Grayscale or Multispectral | None | |||||
border_policy |
The border policy to apply.
|
enumeration | LIMITED | ||||||
orientation_angle |
The angle of orientation in degrees. | float64 | Any value | 10 | |||||
kernel_radius |
The length of the linear structuring element in pixels. | uint32 | >=1 | 3 | |||||
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. The image type can be integer or float. | Image | Binary, Label, Grayscale or Multispectral | null | |||||
borderPolicy |
The border policy to apply.
|
Enumeration | LIMITED | ||||||
orientationAngle |
The angle of orientation in degrees. | Float64 | Any value | 10 | |||||
kernelRadius |
The length of the linear structuring element in pixels. | UInt32 | >=1 | 3 | |||||
outputImage |
The output image. Its dimensions and type are forced to the same values as the input image. | Image | null |
Object Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); ClosingLine2d closingLine2dAlgo; closingLine2dAlgo.setInputImage( polystyrene ); closingLine2dAlgo.setOrientationAngle( 10 ); closingLine2dAlgo.setKernelRadius( 3 ); closingLine2dAlgo.setBorderPolicy( ClosingLine2d::BorderPolicy::EXTENDED ); closingLine2dAlgo.execute(); std::cout << "outputImage:" << closingLine2dAlgo.outputImage()->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif")) closing_line_2d_algo = imagedev.ClosingLine2d() closing_line_2d_algo.input_image = polystyrene closing_line_2d_algo.orientation_angle = 10 closing_line_2d_algo.kernel_radius = 3 closing_line_2d_algo.border_policy = imagedev.ClosingLine2d.EXTENDED closing_line_2d_algo.execute() print( "output_image:", str( closing_line_2d_algo.output_image ) )
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" ); ClosingLine2d closingLine2dAlgo = new ClosingLine2d { inputImage = polystyrene, orientationAngle = 10, kernelRadius = 3, borderPolicy = ClosingLine2d.BorderPolicy.EXTENDED }; closingLine2dAlgo.Execute(); Console.WriteLine( "outputImage:" + closingLine2dAlgo.outputImage.ToString() );
Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = closingLine2d( polystyrene, 10, 3, ClosingLine2d::BorderPolicy::EXTENDED ); std::cout << "outputImage:" << result->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif")) result = imagedev.closing_line_2d( polystyrene, 10, 3, imagedev.ClosingLine2d.EXTENDED ) print( "output_image:", str( result ) )
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" ); IOLink.ImageView result = Processing.ClosingLine2d( polystyrene, 10, 3, ClosingLine2d.BorderPolicy.EXTENDED ); Console.WriteLine( "outputImage:" + result.ToString() );