Generate Pixel Aggregation (Image Processing)
Synopsis
This operator takes two images and calculates aggregations on a per pixel levelDescription
The operator requires you to provide images of same size and with the same number of channels. It iterates over all pixels in each channel and applies an aggregation for each pixel. The result is again an image.
Input
- left
The first image.
- right
The second image.
Output
- result
The result of the aggregation
Parameters
- method
The method of aggregation.
- abs_diff: The absolute difference between the two pixel intensities.
- add: The sum of the two pixel intensities.
- divide: The division of the two pixel intensities (left divided by right).
- max: The maximum of the two pixel intensities.
- min: The minimum of the two pixel intensities.
- multiply: The product of the two pixel intensities.