ArithmeticOperationWithValue
Performs a pointwise arithmetic operation between an image and a value.
Access to parameter description
The arithmetic operator to apply between the input image I and the constant value C can be selected from:
See also
Access to parameter description
The arithmetic operator to apply between the input image I and the constant value C can be selected from:
- Addition
- Subtraction
- Multiply
- Division
- Minimum or maximum
See also
Function Syntax
This function returns outputImage.
// Function prototype
std::shared_ptr< iolink::ImageView > arithmeticOperationWithValue( std::shared_ptr< iolink::ImageView > inputImage, double value, ArithmeticOperationWithValue::ArithmeticOperator arithmeticOperator, std::shared_ptr< iolink::ImageView > outputImage = NULL );
Class Syntax
Parameters
Parameter Name | Description | Type | Supported Values | Default Value | |||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
![]() |
inputImage |
The input image.
The image type can be grayscale, binary, label, and color. |
Image | Binary, Label, Grayscale or Multispectral | nullptr | ||||||||||||
![]() |
value |
The value to apply.
The value is cast into the smallest type with no loss of precision. |
Float64 | Any value | 0 | ||||||||||||
![]() |
arithmeticOperator |
The arithmetic operator to apply.
|
Enumeration | ADD | |||||||||||||
![]() |
outputImage |
The output image.
The output image dimensions are forced to the same values as the input. The output image type is deduced from the input. |
Image | nullptr |
Object Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); ArithmeticOperationWithValue arithmeticOperationWithValueAlgo; arithmeticOperationWithValueAlgo.setInputImage( polystyrene ); arithmeticOperationWithValueAlgo.setValue( 10 ); arithmeticOperationWithValueAlgo.setArithmeticOperator( ArithmeticOperationWithValue::ArithmeticOperator::ADD ); arithmeticOperationWithValueAlgo.execute(); std::cout << "outputImage:" << arithmeticOperationWithValueAlgo.outputImage()->toString();
Function Examples
std::shared_ptr< iolink::ImageView > polystyrene = ioformat::readImage( std::string( IMAGEDEVDATA_IMAGES_FOLDER ) + "polystyrene.tif" ); auto result = arithmeticOperationWithValue( polystyrene, 10, ArithmeticOperationWithValue::ArithmeticOperator::ADD ); std::cout << "outputImage:" << result->toString();