You are here: Start » AVL.NET » Image Combinators

Image Combinators

Icon Name Description
AddImages Adds two images pixel by pixel.
AddImages_OfArray Adds images of an array pixel by pixel.
AddImages_OfLoop Adds images appearing in consecutive iterations pixel by pixel.
AverageImages Averages two images pixel by pixel.
AverageImages_OfArray Averages images from an array pixel by pixel.
BlendImages Computes weighted sum pixel by pixel.
ComposeImages Takes pixels from the first image within the specified region and from the other one elsewhere.
DifferenceImage Useful for things like comparing an image against a template or for detecting differences between consecutive video frames.
DifferenceImage_Flex Useful for things like comparing an image against a template or for detecting differences between consecutive video frames.
DifferenceImage_Shifted Useful for things like comparing an image against a template or for detecting differences between consecutive video frames.
DivideImages Can be used for flat field correction.
LerpImages Interpolates two images linearly pixel by pixel.
MaximumImage Creates an image from the higher pixel values of each corresponding pair.
MaximumImage_OfArray Computes the maximum of images of an array pixel by pixel.
MaximumImage_OfLoop Computes the maximum of images appearing in consecutive iterations pixel by pixel.
MedianImages_OfArray Compute median value for each pixel of images from an array.
MinimumImage Creates an image from the lower pixel values of each corresponding pair.
MinimumImage_OfArray Computes the minimum of images of an array pixel by pixel.
MinimumImage_OfLoop Computes the minimum of images appearing in consecutive iterations pixel by pixel.
MultiplyImages Multiplies two images pixel by pixel.
MultiplyImages_OfArray Multiplies images of an array pixel by pixel.
MultiplyImages_OfLoop Multiplies images appearing in consecutive iterations pixel by pixel.
NthImage_OfArray For each pixel location, get value of n-th (increasing) pixel among input images.
SubtractImages Subtracts two images pixel by pixel. The result is signed.