Add fillter - add pixel values of two images.

The add filter takes two images (source and overlay images) of the same size and pixel format and produces an image, where each pixel equals to the sum value of corresponding pixels from provided images (if sum is greater than maximum allowed value, 255 or 65535, then it is truncated to that maximum).

The filter accepts 8 and 16 bpp grayscale images and 24, 32, 48 and 64 bpp color images for processing.

Sample usage:

// create filter Add filter = new Add( overlayImage ); // apply the filter Bitmap resultImage = filter.Apply( sourceImage );

Source image:

Overlay image:

Result image:

Inheritance: BaseInPlaceFilter2
Example #1
0
 private void SetFilter()
 {
     ImageType = ImageTypes.Rgb24bpp;
     Af.Add newFilter = new Af.Add();
     newFilter.OverlayImage = Overlay;
     imageFilter            = newFilter;
 }