CudaOpening2d
Performs a two-dimensional opening using a structuring element matching with a square or a cross.
Access to parameter description
This command is experimental, his signature may be modified between now and his final version.
For an introduction:
See also
Access to parameter description
This command is experimental, his signature may be modified between now and his final version.
For an introduction:
- section Mathematical Morphology
- section Introduction To Opening
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > cudaOpening2d( std::shared_ptr< iolink::ImageView > inputImage, uint32_t kernelRadius, CudaOpening2d::Neighborhood neighborhood, CudaContext::Ptr cudaContext, std::shared_ptr< iolink::ImageView > outputImage = NULL );
This function returns outputImage.
// Function prototype.
cuda_opening_2d( input_image,
kernel_radius = 3,
neighborhood = CudaOpening2d.Neighborhood.CONNECTIVITY_8,
cuda_context = None,
output_image = None )
This function returns outputImage.
// Function prototype.
public static IOLink.ImageView
CudaOpening2d( IOLink.ImageView inputImage,
UInt32 kernelRadius = 3,
CudaOpening2d.Neighborhood neighborhood = ImageDev.CudaOpening2d.Neighborhood.CONNECTIVITY_8,
Data.CudaContext cudaContext = null,
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 | ||||
![]() |
kernelRadius |
The number of iterations (the half size of the structuring element, in pixels). A square structuring element always has an odd side length (3x3, 5x5, etc.) which is defined by twice the kernel radius + 1. | UInt32 | >=1 | 3 | ||||
![]() |
neighborhood |
The 2D neighborhood configuration.
|
Enumeration | CONNECTIVITY_8 | |||||
![]() |
cudaContext |
CUDA context information. | CudaContext | nullptr | |||||
![]() |
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 | ||||
![]() |
kernel_radius |
The number of iterations (the half size of the structuring element, in pixels). A square structuring element always has an odd side length (3x3, 5x5, etc.) which is defined by twice the kernel radius + 1. | uint32 | >=1 | 3 | ||||
![]() |
neighborhood |
The 2D neighborhood configuration.
|
enumeration | CONNECTIVITY_8 | |||||
![]() |
cuda_context |
CUDA context information. | cuda_context | None | |||||
![]() |
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 | ||||
![]() |
kernelRadius |
The number of iterations (the half size of the structuring element, in pixels). A square structuring element always has an odd side length (3x3, 5x5, etc.) which is defined by twice the kernel radius + 1. | UInt32 | >=1 | 3 | ||||
![]() |
neighborhood |
The 2D neighborhood configuration.
|
Enumeration | CONNECTIVITY_8 | |||||
![]() |
cudaContext |
CUDA context information. | CudaContext | null | |||||
![]() |
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" ); CudaOpening2d cudaOpening2dAlgo; cudaOpening2dAlgo.setInputImage( polystyrene ); cudaOpening2dAlgo.setKernelRadius( 3 ); cudaOpening2dAlgo.setNeighborhood( CudaOpening2d::Neighborhood::CONNECTIVITY_8 ); cudaOpening2dAlgo.setCudaContext( nullptr ); cudaOpening2dAlgo.execute(); std::cout << "outputImage:" << cudaOpening2dAlgo.outputImage()->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))
cuda_opening_2d_algo = imagedev.CudaOpening2d()
cuda_opening_2d_algo.input_image = polystyrene
cuda_opening_2d_algo.kernel_radius = 3
cuda_opening_2d_algo.neighborhood = imagedev.CudaOpening2d.CONNECTIVITY_8
cuda_opening_2d_algo.cuda_context = None
cuda_opening_2d_algo.execute()
print( "output_image:", str( cuda_opening_2d_algo.output_image ) )
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" );
CudaOpening2d cudaOpening2dAlgo = new CudaOpening2d
{
inputImage = polystyrene,
kernelRadius = 3,
neighborhood = CudaOpening2d.Neighborhood.CONNECTIVITY_8,
cudaContext = null
};
cudaOpening2dAlgo.Execute();
Console.WriteLine( "outputImage:" + cudaOpening2dAlgo.outputImage.ToString() );
Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = cudaOpening2d( polystyrene, 3, CudaOpening2d::Neighborhood::CONNECTIVITY_8, nullptr ); std::cout << "outputImage:" << result->toString();
polystyrene = ioformat.read_image(imagedev_data.get_image_path("polystyrene.tif"))
result = imagedev.cuda_opening_2d( polystyrene, 3, imagedev.CudaOpening2d.CONNECTIVITY_8, None )
print( "output_image:", str( result ) )
ImageView polystyrene = ViewIO.ReadImage( @"Data/images/polystyrene.tif" ); IOLink.ImageView result = Processing.CudaOpening2d( polystyrene, 3, CudaOpening2d.Neighborhood.CONNECTIVITY_8, null ); Console.WriteLine( "outputImage:" + result.ToString() );

