原文:Win8Metro(C#)数字图像处理--2.33图像非线性变换  [函数名称] 图像非线性变换函数NonlinearTransformProcess(WriteableBitmap src,int k )  [函数代码] /// <summary> /// Nonlinear transform process. /// </summary> /// <param name="src">The source image.</para…
原文:Win8Metro(C#)数字图像处理--2.3图像反色 [函数名称] 图像反色函数ContraryProcess(WriteableBitmap src) [算法说明]     反色公式如下:       P'(x,y) = 255 - P(x,y);     P'(x,y)为反色后的像素值,P(x,y)是原始像素值. [函数代码]        ///<summary>        /// Contrary process.        ///</summary>  …
原文:Win8Metro(C#)数字图像处理--2.32图像曝光算法  [函数名称] 图像曝光函数ExposureProcess(WriteableBitmap src,int exposureValue)  [函数代码]         /// <summary>         /// Exposure process.         /// </summary>         /// <param name="src">Source i…
原文:Win8Metro(C#)数字图像处理--2.27图像加法运算  [函数名称] 图像加法函数AddProcess(WriteableBitmap src, WriteableBitmap addSrc) [函数代码]         /// <summary>         /// Add procession of two images(Both of them should be in same size).         /// </summary>      …
原文:Win8Metro(C#)数字图像处理--2.28图像乘法运算  [函数名称] 图像乘法函数MultiplicationProcess(WriteableBitmap src, WriteableBitmap mulSrc) [函数代码] /// <summary> /// Multiplication of two images(Both of them should be in same size). /// </summary> /// <param name…
原文:Win8Metro(C#)数字图像处理--2.29图像除法运算  [函数名称] 图像除法函数DivisionProcess(WriteableBitmap src, WriteableBitmap divSrc) [函数代码] /// <summary> /// Division of two images. /// </summary> /// <param name="src">The frist source image.</p…
原文:Win8Metro(C#)数字图像处理--2.26图像减法  [函数名称] 图像减法函数SubtractionProcess(WriteableBitmap src, WriteableBitmap subSrc) [算法说明] 图像减法就是将两幅图像对应像素值进行减法运算,这里要求两幅图像大小最好相同. 算法过程如下: [函数代码] ///<summary> /// Subtraction of two images(Both of them should be in same s…
原文:Win8Metro(C#)数字图像处理--2.19图像水平镜像  [函数名称] 图像水平镜像函数MirrorXProcess(WriteableBitmap src) [函数代码]        ///<summary>        /// Horizontal mirror process.        ///</summary>        ///<param name="src">Source image.</param&…
原文:Win8Metro(C#)数字图像处理--2.20图像垂直镜像  [函数名称] 图像垂直镜像函数MirrorYProcess(WriteableBitmap src) [函数代码]        ///<summary>        /// Vertical mirror process.        ///</summary>        ///<param name="src">Source image.</param>…
原文:Win8Metro(C#)数字图像处理--2.18图像平移变换  [函数名称] 图像平移变换函数TranslationProcess(WriteableBitmap src,int x,int y) [函数代码]        ///<summary>        /// Translation process.        ///</summary>        ///<param name="src">Source image.&…