C# Class Accord.Imaging.Filters.Merge

Merge filter - get MAX of pixels in two images.

The merge 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 maximum value of corresponding pixels from provided images.

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

Sample usage:

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

Source image:

Overlay image:

Result image:

Inheritance: BaseInPlaceFilter2
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Merge ( ) : System

Initializes a new instance of the Merge class

Merge ( Bitmap overlayImage ) : System

Initializes a new instance of the Merge class.

Merge ( UnmanagedImage unmanagedOverlayImage ) : System

Initializes a new instance of the Merge class.

Protected Methods

Method Description
ProcessFilter ( UnmanagedImage image, UnmanagedImage overlay ) : void

Process the filter on the specified image.

Private Methods

Method Description
InitFormatTranslations ( ) : void

Method Details

Merge() public method

Initializes a new instance of the Merge class
public Merge ( ) : System
return System

Merge() public method

Initializes a new instance of the Merge class.
public Merge ( Bitmap overlayImage ) : System
overlayImage System.Drawing.Bitmap Overlay image.
return System

Merge() public method

Initializes a new instance of the Merge class.
public Merge ( UnmanagedImage unmanagedOverlayImage ) : System
unmanagedOverlayImage UnmanagedImage Unmanaged overlay image.
return System

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage image, UnmanagedImage overlay ) : void
image UnmanagedImage Source image data.
overlay UnmanagedImage Overlay image data.
return void