GeodesicMaxima
Extracts the geodesic diameter of the particles from a geodesic propagation image.
Access to parameter description
For an introduction:
See also
Access to parameter description
For an introduction:
- section Mathematical Morphology
- section Geodesic Transformations
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > geodesicMaxima( std::shared_ptr< iolink::ImageView > inputImage, GeodesicMaxima::Neighborhood neighborhood, std::shared_ptr< iolink::ImageView > outputImage = NULL );
This function returns outputImage.
// Function prototype. geodesic_maxima( input_image, neighborhood = GeodesicMaxima.Neighborhood.CONNECTIVITY_26, output_image = None )
This function returns outputImage.
// Function prototype. public static IOLink.ImageView GeodesicMaxima( IOLink.ImageView inputImage, GeodesicMaxima.Neighborhood neighborhood = ImageDev.GeodesicMaxima.Neighborhood.CONNECTIVITY_26, IOLink.ImageView outputImage = null );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
inputImage |
The input image. | Image | Binary, Label, Grayscale or Multispectral | nullptr | |||||||
neighborhood |
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
|
Enumeration | CONNECTIVITY_26 | ||||||||
outputImage |
The 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 input image. | image | Binary, Label, Grayscale or Multispectral | None | |||||||
neighborhood |
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
|
enumeration | CONNECTIVITY_26 | ||||||||
output_image |
The 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 input image. | Image | Binary, Label, Grayscale or Multispectral | null | |||||||
neighborhood |
The 3D neighborhood configuration. This parameter is ignored with a 2D input image.
|
Enumeration | CONNECTIVITY_26 | ||||||||
outputImage |
The output image. Its dimensions and type are forced to the same values as the input. | Image | null |
Object Examples
auto foam = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam.vip" ); GeodesicMaxima geodesicMaximaAlgo; geodesicMaximaAlgo.setInputImage( foam ); geodesicMaximaAlgo.setNeighborhood( GeodesicMaxima::Neighborhood::CONNECTIVITY_26 ); geodesicMaximaAlgo.execute(); std::cout << "outputImage:" << geodesicMaximaAlgo.outputImage()->toString();
foam = imagedev.read_vip_image(imagedev_data.get_image_path("foam.vip")) geodesic_maxima_algo = imagedev.GeodesicMaxima() geodesic_maxima_algo.input_image = foam geodesic_maxima_algo.neighborhood = imagedev.GeodesicMaxima.CONNECTIVITY_26 geodesic_maxima_algo.execute() print( "output_image:", str( geodesic_maxima_algo.output_image ) )
ImageView foam = Data.ReadVipImage( @"Data/images/foam.vip" ); GeodesicMaxima geodesicMaximaAlgo = new GeodesicMaxima { inputImage = foam, neighborhood = GeodesicMaxima.Neighborhood.CONNECTIVITY_26 }; geodesicMaximaAlgo.Execute(); Console.WriteLine( "outputImage:" + geodesicMaximaAlgo.outputImage.ToString() );
Function Examples
auto foam = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam.vip" ); auto result = geodesicMaxima( foam, GeodesicMaxima::Neighborhood::CONNECTIVITY_26 ); std::cout << "outputImage:" << result->toString();
foam = imagedev.read_vip_image(imagedev_data.get_image_path("foam.vip")) result = imagedev.geodesic_maxima( foam, imagedev.GeodesicMaxima.CONNECTIVITY_26 ) print( "output_image:", str( result ) )
ImageView foam = Data.ReadVipImage( @"Data/images/foam.vip" ); IOLink.ImageView result = Processing.GeodesicMaxima( foam, GeodesicMaxima.Neighborhood.CONNECTIVITY_26 ); Console.WriteLine( "outputImage:" + result.ToString() );