Accord.Imaging.Filters.Concatenate.Concatenate C# (CSharp) Method

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
        public Concatenate(Bitmap overlayImage)
        {
            this.overlayImage = overlayImage;
            formatTranslations[PixelFormat.Format8bppIndexed] = PixelFormat.Format8bppIndexed;
            formatTranslations[PixelFormat.Format24bppRgb] = PixelFormat.Format24bppRgb;
            formatTranslations[PixelFormat.Format32bppRgb] = PixelFormat.Format32bppRgb;
            formatTranslations[PixelFormat.Format32bppArgb] = PixelFormat.Format32bppArgb;
            formatTranslations[PixelFormat.Format16bppGrayScale] = PixelFormat.Format16bppGrayScale;
            formatTranslations[PixelFormat.Format48bppRgb] = PixelFormat.Format48bppRgb;
            formatTranslations[PixelFormat.Format64bppArgb] = PixelFormat.Format64bppArgb;
        }