AxisPropagationLabel3d
Simulates the propagation through a phase of a three-dimensional image and computes a label image representing separately the connected and unconnected voxels of this phase.
Access to parameter description
For an introduction:
A label output image represents the connected and disconnected areas:
A measurement output object contains statistics about the connected and disconnected areas of the selected phase through the volume.
The maskAndSeedValues and maximumThreshold parameters identify areas of the image in which propagation can be done; therefore, it allows identifying non-porous areas.
Propagation is performed from the seeds, along the user defined axis, through voxels of intensity X verifying the following four conditions:
See also
Access to parameter description
For an introduction:
- section Image Analysis
- section Propagation
A label output image represents the connected and disconnected areas:
- Label 0: not in the selected phase
- Label 1: in the selected phase and connected with the seeds
- Label 2: in the selected phase and not connected with the seeds
A measurement output object contains statistics about the connected and disconnected areas of the selected phase through the volume.
The maskAndSeedValues and maximumThreshold parameters identify areas of the image in which propagation can be done; therefore, it allows identifying non-porous areas.
Propagation is performed from the seeds, along the user defined axis, through voxels of intensity X verifying the following four conditions:
- The voxel is connected (adjacent) to a voxel already 'propagated'.
- X is different from the first maskAndSeedValues value.
- X is greater or equal to the second maskAndSeedValues value.
- X is smaller or equal to the maximumThreshold value.
See also
Function Syntax
This function returns a AxisPropagationLabel3dOutput structure containing the outputLabelImage and outputMeasurement output parameters.
// Output structure. struct AxisPropagationLabel3dOutput { std::shared_ptr< iolink::ImageView > outputLabelImage; AxisPropagationLabel3dMsr::Ptr outputMeasurement; }; // Function prototype. AxisPropagationLabel3dOutput axisPropagationLabel3d( std::shared_ptr< iolink::ImageView > inputImage, iolink::Vector2i32 maskAndSeedValues, int32_t maximumThreshold, AxisPropagationLabel3d::Axis axis, std::shared_ptr< iolink::ImageView > outputLabelImage = NULL, AxisPropagationLabel3dMsr::Ptr outputMeasurement = NULL );
This function returns a tuple containing the output_label_image and output_measurement output parameters.
// Function prototype. axis_propagation_label_3d( input_image, mask_and_seed_values = [255, -1024], maximum_threshold = 128, axis = AxisPropagationLabel3d.Axis.Z_AXIS, output_label_image = None, output_measurement = None )
This function returns a AxisPropagationLabel3dOutput structure containing the outputLabelImage and outputMeasurement output parameters.
/// Output structure of the AxisPropagationLabel3d function. public struct AxisPropagationLabel3dOutput { public IOLink.ImageView outputLabelImage; public AxisPropagationLabel3dMsr outputMeasurement; }; // Function prototype. public static AxisPropagationLabel3dOutput AxisPropagationLabel3d( IOLink.ImageView inputImage, int[] maskAndSeedValues = null, Int32 maximumThreshold = 128, AxisPropagationLabel3d.Axis axis = ImageDev.AxisPropagationLabel3d.Axis.Z_AXIS, IOLink.ImageView outputLabelImage = null, AxisPropagationLabel3dMsr outputMeasurement = null );
Class Syntax
Parameters
Class Name | AxisPropagationLabel3d |
---|
Parameter Name | Description | Type | Supported Values | Default Value | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
inputImage |
The input grayscale, binary, or color image. In the case of a binary image, the background represents the phase where the propagation has to be performed. | Image | Binary, Label or Grayscale | nullptr | |||||||
maskAndSeedValues |
The first value is a mask value. Voxels with this intensity value are not infiltrated by the propagation. The second value is the seed value. Voxels with an intensity value lower than this seed value are not infiltrated by the propagation. A value lower than the second value of maskAndSeedValues or greater or equal to maximumThreshold is ignored. This parameter is ignored in binary case, and is forced to [2, 0]. | Vector2i32 | Any value | {255, -1024} | |||||||
maximumThreshold |
The maximum propagation intensity value. Voxels having an intensity value greater or equal to this value are rejected by the propagation. This parameter is ignored in binary case, and is forced to 1. | Int32 | Any value | 128 | |||||||
axis |
The axis along which the propagation is performed.
|
Enumeration | Z_AXIS | ||||||||
outputLabelImage |
The binary output image representing the propagation within the selected phase. A void image means that there is no connection through the selected axis. Its dimensions are forced to the same values as the input. | Image | nullptr | ||||||||
outputMeasurement |
The output measurement result. | AxisPropagationLabel3dMsr | nullptr |
Object Examples
auto foam_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam_sep.vip" ); AxisPropagationLabel3d axisPropagationLabel3dAlgo; axisPropagationLabel3dAlgo.setInputImage( foam_sep ); axisPropagationLabel3dAlgo.setMaskAndSeedValues( {255, -1024} ); axisPropagationLabel3dAlgo.setMaximumThreshold( 128 ); axisPropagationLabel3dAlgo.setAxis( AxisPropagationLabel3d::Axis::X_AXIS ); axisPropagationLabel3dAlgo.execute(); std::cout << "outputLabelImage:" << axisPropagationLabel3dAlgo.outputLabelImage()->toString(); std::cout << "poreVolume: " << axisPropagationLabel3dAlgo.outputMeasurement()->poreVolume( ) ;
foam_sep = imagedev.read_vip_image(imagedev_data.get_image_path("foam_sep.vip")) axis_propagation_label_3d_algo = imagedev.AxisPropagationLabel3d() axis_propagation_label_3d_algo.input_image = foam_sep axis_propagation_label_3d_algo.mask_and_seed_values = [255, -1024] axis_propagation_label_3d_algo.maximum_threshold = 128 axis_propagation_label_3d_algo.axis = imagedev.AxisPropagationLabel3d.X_AXIS axis_propagation_label_3d_algo.execute() print( "output_label_image:", str( axis_propagation_label_3d_algo.output_label_image ) ); print( print("poreVolume: ", axis_propagation_label_3d_algo.output_measurement.pore_volume( ) ) );
ImageView foam_sep = Data.ReadVipImage( @"Data/images/foam_sep.vip" ); AxisPropagationLabel3d axisPropagationLabel3dAlgo = new AxisPropagationLabel3d { inputImage = foam_sep, maskAndSeedValues = new int[]{255, -1024}, maximumThreshold = 128, axis = AxisPropagationLabel3d.Axis.X_AXIS }; axisPropagationLabel3dAlgo.Execute(); Console.WriteLine( "outputLabelImage:" + axisPropagationLabel3dAlgo.outputLabelImage.ToString() ); Console.WriteLine( "poreVolume: " + axisPropagationLabel3dAlgo.outputMeasurement.poreVolume( ) );
Function Examples
auto foam_sep = readVipImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "foam_sep.vip" ); auto result = axisPropagationLabel3d( foam_sep, {255, -1024}, 128, AxisPropagationLabel3d::Axis::X_AXIS ); std::cout << "outputLabelImage:" << result.outputLabelImage->toString(); std::cout << "poreVolume: " << result.outputMeasurement->poreVolume( ) ;
foam_sep = imagedev.read_vip_image(imagedev_data.get_image_path("foam_sep.vip")) result_output_label_image, result_output_measurement = imagedev.axis_propagation_label_3d( foam_sep, [255, -1024], 128, imagedev.AxisPropagationLabel3d.X_AXIS ) print( "output_label_image:", str( result_output_label_image ) ); print( "poreVolume: ", result_output_measurement.pore_volume( ) );
ImageView foam_sep = Data.ReadVipImage( @"Data/images/foam_sep.vip" ); Processing.AxisPropagationLabel3dOutput result = Processing.AxisPropagationLabel3d( foam_sep, new int[]{255, -1024}, 128, AxisPropagationLabel3d.Axis.X_AXIS ); Console.WriteLine( "outputLabelImage:" + result.outputLabelImage.ToString() ); Console.WriteLine( "poreVolume: " + result.outputMeasurement.poreVolume( ) );