Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法

Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法
原文: Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法

[函数名称]

  图像雾化         AtomizationProcess(WriteableBitmap src,int v)

[算法说明]

Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法_第1张图片



        /// 
        /// Atomization process.
        /// 
        /// The source image.
        /// The threshould to control the effect of atomization.
        /// 
        public static WriteableBitmap AtomizationProcess(WriteableBitmap src,int v)////45图像雾化
        {
            if (src != null)
            {
                int w = src.PixelWidth;
                int h = src.PixelHeight;
                WriteableBitmap srcImage = new WriteableBitmap(w, h);
                byte[] temp = src.PixelBuffer.ToArray();
                byte[] tempMask = (byte[])temp.Clone();
                Random ran = new Random();
                int k = 0;
                int dx = 0;
                int dy = 0;
                for (int j = 0; j < h; j++)
                {
                    for (int i = 0; i < w; i ++)
                    {
                        k = ran.Next(v);
                        dx = (i + k) >= w ? w - 1 : (i + k);
                        dy = (j + k) >= h ? h - 1 : (j + k);
                        temp[i * 4 + j * w * 4] = (byte)tempMask[dx * 4 + dy * w * 4];
                        temp[i * 4 + 1 + j * w * 4] = (byte)tempMask[dx * 4 + 1 + dy * w * 4];
                        temp[i * 4 + 2 + j * w * 4] = (byte)tempMask[dx * 4 + 2 + dy * w * 4];
                    }
                }
                Stream sTemp = srcImage.PixelBuffer.AsStream();
                sTemp.Seek(0, SeekOrigin.Begin);
                sTemp.Write(temp, 0, w * 4 * h);
                return srcImage;
            }
            else
            {
                return null;
            }
        }

[图像效果]

Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法_第2张图片




posted on 2018-03-13 10:29 NET未来之路 阅读( ...) 评论( ...) 编辑 收藏

转载于:https://www.cnblogs.com/lonelyxmas/p/8554436.html

你可能感兴趣的:(Win8 Metro(C#)数字图像处理--2.45图像雾化效果算法)