DirectionalBlending2d
Combines two images following a direction axis.
Access to parameter description
This algorithm may be very useful in stitching operations in order to manage the overlapping areas.
Remarks: Both input images must have the same dimensions.
See also
Access to parameter description
This algorithm may be very useful in stitching operations in order to manage the overlapping areas.
Remarks: Both input images must have the same dimensions.
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > directionalBlending2d( std::shared_ptr< iolink::ImageView > inputImage1, std::shared_ptr< iolink::ImageView > inputImage2, DirectionalBlending2d::Axis axis, std::shared_ptr< iolink::ImageView > outputImage = NULL );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||
---|---|---|---|---|---|---|---|---|---|
![]() |
inputImage1 |
The first input image. | Image | Binary, Label, Grayscale or Multispectral | nullptr | ||||
![]() |
inputImage2 |
The second input image (must have same dimensions and type as the first input). | Image | Binary, Label, Grayscale or Multispectral | nullptr | ||||
![]() |
axis |
The guiding axis to perform the blending.
|
Enumeration | X_AXIS | |||||
![]() |
outputImage |
The output image. Its dimensions and type are forced to the same values as the inputs. | Image | nullptr |
Object Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); DirectionalBlending2d directionalBlending2dAlgo; directionalBlending2dAlgo.setInputImage1( polystyrene ); directionalBlending2dAlgo.setInputImage2( polystyrene ); directionalBlending2dAlgo.setAxis( DirectionalBlending2d::Axis::X_AXIS ); directionalBlending2dAlgo.execute(); std::cout << "outputImage:" << directionalBlending2dAlgo.outputImage()->toString();
Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = directionalBlending2d( polystyrene, polystyrene, DirectionalBlending2d::Axis::X_AXIS ); std::cout << "outputImage:" << result->toString();