博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Win8Metro(C#)数字图像处理--2.27图像加法运算
阅读量:6296 次
发布时间:2019-06-22

本文共 1409 字,大约阅读时间需要 4 分钟。

原文:



[函数名称]

图像加法函数AddProcess(WriteableBitmap src, WriteableBitmap addSrc)

[函数代码]

        /// <summary>

        /// Add procession of two images(Both of them should be in same size).

        /// </summary>

        /// <param name="src">The first source image.</param>

        /// <param name="addSrc">The second source iamge.</param>

        /// <returns></returns>

        public static WriteableBitmap AddProcess(WriteableBitmap src,WriteableBitmap addSrc)27图像加法 

        {

            if (src != null)

            {

                int w = src.PixelWidth;

                int h = src.PixelHeight;

                WriteableBitmap addImage = new WriteableBitmap(w, h);

                byte[] temp = src.PixelBuffer.ToArray();

                byte[] addTemp = addSrc.PixelBuffer.ToArray();

                byte[] dst = new byte[w * h * 4];

                int r = 0, g = 0, b = 0;

                for (int i = 0; i < w; i++)

                {

                    for (int j = 0; j < h; j++)

                    {

                        b = temp[i * 4 + (h - 1 - j) * w * 4] + addTemp[i * 4 + (h - 1 - j) * w * 4];

                        g = temp[i * 4 + 1 + (h - 1 - j) * w * 4] + addTemp[i * 4 + 1 + (h - 1 - j) * w * 4];

                        r = temp[i * 4 + 2 + (h - 1 - j) * w * 4] + addTemp[i * 4 + 2 + (h - 1 - j) * w * 4];

                        dst[i * 4 + j * w * 4] = (byte)(b > 0 ? (b < 255 ? b : 255) : 0);

                        dst[i * 4 + 1 + j * w * 4] = (byte)(g > 0 ? (g < 255 ? g : 255) : 0);

                        dst[i * 4 + 2 + j * w * 4] = (byte)(r > 0 ? (r < 255 ? r : 255) : 0);

                        dst[i * 4 + 3 + j * w * 4] = 0;

                        b = 0; g = 0; r = 0;

                    }

                }

                Stream sTemp = addImage.PixelBuffer.AsStream();

                sTemp.Seek(0, SeekOrigin.Begin);

                sTemp.Write(dst, 0, w * 4 * h);

                return addImage;

            }

            else

            {

                return null;

            }      

        }

你可能感兴趣的文章
各种环境下清除缓存的方法。
查看>>
android studio修改项目包名
查看>>
systemd设置静态IP
查看>>
注册特殊广播接收者
查看>>
Java编程思想(第4版)读书笔记——01
查看>>
设计模式学习笔记-原型模式
查看>>
Log4Net日志分类和自动维护
查看>>
phpexecl
查看>>
第五章 文件管理
查看>>
广州华盟信息科技有限公司
查看>>
在使用 interface 声明一个接口时,只可以使用那个修饰符修饰该接口?
查看>>
1808: 【基础】计算表达式
查看>>
3d模式下 让敌人拥有自动移动的AI
查看>>
2018-2019-1 20165226 《信息安全系统设计基础》第4周学习总结
查看>>
iOS开发 - OC - PCH文件使用
查看>>
心血来潮想写个博客
查看>>
如何提高Linux下块设备IO的整体性能?
查看>>
mongo 内存限制wiredTigerCacheSizeGB = 10
查看>>
CDH 问题
查看>>
javascript的族家族史
查看>>