C# Class Accord.Imaging.Filters.Concatenate

Concatenation filter.
Concatenates two images side by side in a single image.
Inheritance: BaseTransformationFilter
Show file Open project: accord-net/framework Class Usage Examples

Public Methods

Method Description
Concatenate ( Bitmap overlayImage ) : System.Collections.Generic

Creates a new concatenation filter.

Protected Methods

Method Description
CalculateNewImageSize ( UnmanagedImage sourceData ) : Size

Calculates new image size.

ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void

Process the filter on the specified image.

Method Details

CalculateNewImageSize() protected method

Calculates new image size.
protected CalculateNewImageSize ( UnmanagedImage sourceData ) : Size
sourceData UnmanagedImage
return System.Drawing.Size

Concatenate() public method

Creates a new concatenation filter.
public Concatenate ( Bitmap overlayImage ) : System.Collections.Generic
overlayImage System.Drawing.Bitmap The first image to concatenate.
return System.Collections.Generic

ProcessFilter() protected method

Process the filter on the specified image.
protected ProcessFilter ( UnmanagedImage sourceData, UnmanagedImage destinationData ) : void
sourceData UnmanagedImage Source image data.
destinationData UnmanagedImage Destination image data.
return void