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

FastBoxBlur() public method

Initializes a new instance of the FastBoxBlur class.
public FastBoxBlur ( ) : System.Collections.Generic
return System.Collections.Generic
        public FastBoxBlur()
        {
            // initialize format translation dictionary
            _formatTranslations[PixelFormat.Format8bppIndexed] = PixelFormat.Format8bppIndexed;
            _formatTranslations[PixelFormat.Format24bppRgb] = PixelFormat.Format24bppRgb;
            _formatTranslations[PixelFormat.Format16bppGrayScale] = PixelFormat.Format16bppGrayScale;
            _formatTranslations[PixelFormat.Format48bppRgb] = PixelFormat.Format48bppRgb;
        }

Same methods

FastBoxBlur::FastBoxBlur ( byte horizontalKernelSize, byte verticalKernelSize ) : System.Collections.Generic