Processing math: 100%
ImageDev

AbsoluteMaximumWithImage

Computes the maximum between the absolute values of two images.

Access to parameter description

The maximum of absolute values O bewteen two images I1 and I2 is given by the formula: O(n,m)=max{|I1(n,m)|,|I2(n,m)|} See also

Function Syntax

This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > absoluteMaximumWithImage( std::shared_ptr< iolink::ImageView > inputImage1, std::shared_ptr< iolink::ImageView > inputImage2, std::shared_ptr< iolink::ImageView > outputImage = NULL );

Class Syntax

Parameters

Parameter Name Description Type Supported Values Default Value
input
inputImage1
The first input image. Image Binary, Label, Grayscale or Multispectral nullptr
input
inputImage2
The second input image. Image Binary, Label, Grayscale or Multispectral nullptr
output
outputImage
The output image. Its size is the minimum between both inputs for each dimension. Its type is forced to the one having the greater capacity between both input types. Image nullptr

Object Examples

std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" );

AbsoluteMaximumWithImage absoluteMaximumWithImageAlgo;
absoluteMaximumWithImageAlgo.setInputImage1( polystyrene );
absoluteMaximumWithImageAlgo.setInputImage2( polystyrene );
absoluteMaximumWithImageAlgo.execute();

std::cout << "outputImage:" << absoluteMaximumWithImageAlgo.outputImage()->toString();

Function Examples

std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" );

auto result = absoluteMaximumWithImage( polystyrene, polystyrene );

std::cout << "outputImage:" << result->toString();