圖像濾鏡藝術---Glow Filter發光濾鏡

原文: 圖像濾鏡藝術---Glow Filter發光濾鏡

Glow Filter發光濾鏡 html

Glow Filter發光濾鏡是一種讓圖像產生髮光效果的濾鏡,它的實現算法以下:
1,對原圖P進行高斯模糊獲得圖像A;
2,將P和A進行「疊加」圖層混合處理,公式以下:
Result(x,y) = ((basePixel(x,y) <= 128) ? (mixPixel (x,y)  * basePixel (x,y)  / 128):(255 - (255 - mixPixel (x,y) ) * (255 - basePixel (x,y) ) / 128));
注意:Result(x,y)屬於[0-255];
以上就是發光濾鏡的原理。
核心代碼以下:
private Bitmap GlowFilterProcess(Bitmap src)
        {
            Bitmap gaussBitmap = gf.Apply(src, 15);   
            Bitmap dst = new Bitmap(src);
            int w = dst.Width;
            int h = dst.Height;
            BitmapData dstData = dst.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadWrite, PixelFormat.Format32bppArgb);
            BitmapData gaussData = gaussBitmap.LockBits(new Rectangle(0, 0, w, h), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
            byte* pGauss = (byte*)gaussData.Scan0;
            byte* pDst = (byte*)dstData.Scan0;
            int offset = dstData.Stride - w * 4;
            int gray;
            for (int j = 0; j < h; j++)
            {
                for (int i = 0; i < w; i++)
                {
                    gray = ((pDst[0] <= 128) ? (pGauss[0] * pDst[0] / 128) : (255 - (255 - pGauss[0]) * (255 - pDst[0]) / 128));
                    gray = Math.Min(255, Math.Max(0, gray));
                    pDst[0] = (byte)gray;
                    gray = ((pDst[1] <= 128) ? (pGauss[1] * pDst[1] / 128) : (255 - (255 - pGauss[1]) * (255 - pDst[1]) / 128));
                    gray = Math.Min(255, Math.Max(0, gray));
                    pDst[1] = (byte)gray;
                    gray = ((pDst[2] <= 128) ? (pGauss[2] * pDst[2] / 128) : (255 - (255 - pGauss[2]) * (255 - pDst[2]) / 128));
                    gray = Math.Min(255, Math.Max(0, gray));
                    pDst[2] = (byte)gray;
                    pDst[3] = (byte)255;
                    pGauss += 4;
                    pDst += 4;
                }
                pGauss += offset;
                pDst += offset;
            }
            dst.UnlockBits(dstData);
            gaussBitmap.UnlockBits(gaussData);
            return dst;
        }
效果圖以下:

原圖算法

Glow Filter效果圖ide

最後放上一個完整的 C# 程序Demo下載地址:http://www.zealpixel.com/thread-65-1-1.htmlspa

相關文章
相關標籤/搜索